/* Hero Section */
.hero-section {
    height: 590px;
}

.hero-content {
    padding-bottom: 100px;
}

.blog-date p {
    color: var(--white);
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 29px;
    text-transform: uppercase;
}

.blog-title {
    color: var(--white);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 41px;
    text-transform: uppercase;
    text-align: center;
}

.hero-content .blog-details {
    gap: 12px;
    align-items: center;
}

/* Blog Section */
.blog-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 70px;
}

.section-heading {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.blog-card-wrapper {
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.blog-card {
    position: relative;
    height: 289px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.75s ease-out;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: all 0.75s ease-out;
    z-index: 0;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.66) 0%,
            rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.blog-card .blog-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 66%;
    left: 0;
    background: rgba(0, 0, 0, 0.66);
    filter: blur(150px);
    z-index: 2;
    transition: background 0.5s ease-out;
}

.blog-card:hover {
    transform: scale(1.01);
}

.blog-card:hover::after {
    transform: scale(1.08);
}

.blog-card:hover .blog-glow {
    background: #594E8F;
    /* primary-2 */
}

.blog-1 {
    background-image: url('../images/blogs-&-news/Salmon-DNA-Skin-Rejuvenation-treatment-in-Dubai-\ 1.png');
}

.blog-2 {
    background-image: url('../images/Botox-2-80.png');
}

.blog-card h3 {
    font-family: Gotham;
    font-weight: 200;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
    position: relative;
    z-index: 3;
    max-width: 532px;
}

/* Blog Content */
.blog-content {
    max-width: 1440px;
    padding: 70px 70px 50px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.highlight-paragraph p {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    max-width: 801px;
}

.blog-paragraph p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    max-width: 440px;
}

/* Question Section */
.question-section {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--gray-light);
    padding: 50px 70px 100px;
}

.question-section h5 {
    color: var(--text, #000);
    font-family: Gotham;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    max-width: 1195px;
    margin-bottom: 50px;
}

.question-section h6 {
    color: var(--primary-purple);
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 24px;
}

.question-section p {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 12px;
}

.question-wrapper>div:last-child>p {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.map-section iframe {
    width: 100%;
}

@media (max-width: 1440px) {

    .blog-section,
    .blog-content,
    .question-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content,
    .question-section {
        padding-bottom: 70px;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .blog-card {
        height: 230px;
    }

    .blog-content {
        flex-direction: column;
        gap: 40px;
    }

    .blog-content>div>p {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 420px;
    }

    .map-section iframe {
        height: 350px;
    }

    .blog-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .blog-content {
        padding-top: 50px;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .blog-title,
    .highlight-paragraph p,
    .question-section h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .question-section h5 {
        margin-bottom: 30px;
    }

    .question-section h6 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 18px;
    }

    .question-section p {
        font-size: 15px;
    }

    .blog-paragraph p {
        font-size: 16px;
        line-height: 20px;
    }

    .hero-content .blog-details {
        gap: 6px;
    }

    .blog-content {
        gap: 30px;
    }

    .question-section h5 {
        margin-bottom: 30px;
    }

}

@media (max-width: 480px) {

    .blog-section,
    .blog-content,
    .question-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-card {
        height: 180px;
        padding: 16px;
    }

    .blog-card h3 {
        font-size: 16px;
		line-height: 21px;
    }

    .section-heading {
        font-size: 22px;
    }

}