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

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


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

.blog-section .section-heading {
    text-align: left;
}

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

.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-3 {
    background-image: url('../images/PN-PDRN-Salmondin.png');
}

.blog-4 {
    background-image: url('../images/blogs-&-news/Botox-result.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;
}

/* Navigation Section */
.navigation-section {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
}

.navigation-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.navigation-wrapper>div {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 42px;
    cursor: pointer;
}

.prev-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.30);
}

.next-wrapper {
    border: 1px solid var(--primary-blue);
}

.page-number {
    border: 1px solid #000;
}

.page-number.active {
    border: 1px solid var(--primary-blue);
    background: var(--primary-blue);
}

.page-number.active span {
    color: var(--white);
}

.page-number span {
    color: var(--text-dark);
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
}

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

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

@media (max-width: 1440px) {

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

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

@media (max-width:1200px) {
    .blog-grid {
        gap: 30px;
    }
}

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

    .blog-card {
        height: 230px;
    }
}

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

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

    .navigation-wrapper {
        gap: 8px !important;
    }

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

    .navigation-wrapper>div {
        width: 38px;
        height: 38px;
        padding: 4px;
    }

    .page-number a,
    .page-number span,
    .nav-arrow,
    .nav-arrow img {
        width: 38px !important;
        height: 38px !important;
    }

    .page-number span {
        font-size: 16px;
        line-height: normal;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

    .navigation-wrapper>div {
        width: 28px;
        height: 28px;
    }

    .page-number span {
        font-size: 15px;
    }

    .page-number a,
    .page-number span,
    .nav-arrow,
    .nav-arrow img {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }

    .nav-arrow img{
        padding: 2px;
    }
}