.single-expert-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;

    .single-expert-hero-section {
        display: flex;
        flex-direction: column;
    }

    .expert-hero-bg-img {
        width: 100%;
        height: 246px;
        background-color: rgba(0, 0, 0, 0.4);
        background-image: var(--expert-bg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-blend-mode: darken; 
    }

    .expert-hero-details {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin-top: -110px;
        padding-bottom: 40px;
        border-bottom: 1px solid #DEE2E5;

        img {
            display: flex;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #fff;
            object-fit: cover;
            object-position: center;
            margin-bottom: 20px;
        }

        .expert-hero-details-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 889px;
        }

        .expert-name {
            margin: 0;
            font-family: Demo;
            color: #002B46;
            font-family: Demo;
            font-size: 50px;
            font-style: normal;
            font-weight: 400;
            line-height: 50px;
        }

        .expert-job-title {
            margin: 0;
            color: #002C45;
            font-family: Inter;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 36.72px; 
        }

        .expert-about {
            margin: 0;
            color: rgba(0, 44, 69, 0.70);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%; /* 32px */
            max-width: 889px;
        }

        .contact-info-items {
            display: flex;
            column-gap: 24px;
        }

        .contact-info-item {
            display: flex;
            width: 32px;
            height: 32px;
            padding: 0.003px 0 0 0;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .contact-info-item.phone {
            background: url('../icons/phone.svg') no-repeat center center #00B5D3;
        }

        .contact-info-item.email {
            background: url('../icons/email.svg') no-repeat center center #00B5D3;
        }

        .contact-info-item.linkedin {
            background: url('../icons/linkedin.svg') no-repeat center center;
        }

        .contact-info-item.facebook {
            background: url('../icons/facebook.svg') no-repeat center center;
        }

        .contact-info-item.researchgate {
            background: url('../icons/researchgate.svg') no-repeat center center;
        }
    }

    .explore-topics-block,
    .bottom-banner-area {
        margin:0;
        padding:0;
    }

    @media (max-width: 768px) {
        gap: 24px;
        padding-bottom: 0;
    
        .expert-hero-bg-img {
            height: 200px;
        }
    
        .expert-hero-details {
    
            row-gap: 24px;
            margin-top: -70px;
            padding-bottom: 24px;
    
            img {
                width: 130px;
                height: 130px;
                margin: auto;
            }
    
            .expert-hero-details-content {
                gap: 4px;
            }
    
            .expert-name {
                text-align: center;
                font-size: 28px;
                line-height: normal;
            }
    
            .expert-job-title {
                text-align: center;
                font-size: 16px;
                line-height: 24px; 
            }
    
            .expert-about {
                font-size: 16px;
                line-height: 24px;
            }
        }

        .bottom-banner-area {
            margin-top: 36px;
        }

    }
    
}

@media (max-width: 768px) {
    main:not(:has(.bottom-banner-area)) {
        padding-bottom: 60px;
    }
}