    .team-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 50px 0
    }

    .our-team-item {
        background-color: #fff;
        padding: 15px;
        border-radius: 4px;
        position: relative;
    }

    .social-container {
        position: relative;
    }

    .social-panel {
        position: absolute;
        bottom: 76px;
        right: 20px;
        background-color: var(--primary-color);
        border-radius: 50px 50px 0 0;
        padding: 15px 0px 0 0px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        z-index: 9;
        width: 40px;
        align-items: center;
    }

    .social-panel a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-panel a img {
        width: 20px;
        height: 20px;
    }

    .social-panel a img:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 5px;
        color: #fff;
        width: 17px;
        height: 17px;
        transform: scale(1.1);
    }

    .more-btn {
        position: absolute;
        background-color: var(--primary-color);
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: 300;
        right: 20px;
        bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 11;
        border: none;
        box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
    }

    .more-btn::before {
        content: '+';
        transition: all 0.3s ease;
    }

    .social-container:hover .social-panel {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        padding-bottom: 12px;
    }

    .social-container:hover .more-btn::before {
        content: '−';
    }

    .social-container:hover .more-btn {
        border-radius: 0 0 50% 50%;
        box-shadow: 0 6px 16px rgba(225, 27, 34, 0.4);
    }

    .our-team-img {
        width: 100%;
        height: 287px;
        object-fit: cover;
        border-radius: 5px
    }

    .our-team-title {
        font-size: 1.2rem;
        font-weight: 400;
        margin: 4px 0 5px;
        line-height: 1.3;
        padding-left: 20px;
        text-align: center
    }

    .our-team-post {
        font-size: 0.9rem;
        font-weight: 500;
        margin: 4px 0 5px;
        line-height: 1.3;
        color: var(--primary-color);
        text-align: center;
        padding-left: 20px
    }

    @media (max-width: 992px) {
        .team-layout {
            grid-template-columns: repeat(3, 1fr);
            padding: 40px 0
        }
    }

    @media (max-width: 768px) {
        .team-layout {
            grid-template-columns: repeat(2, 1fr);
            padding: 40px 0
        }
    }

    @media (max-width: 576px) {
        .team-layout {
            grid-template-columns: repeat(1, 1fr);
        }
    }