/* =====================================================
   BLOG PAGE
===================================================== */

:root {
    --pink: #f5386d;
    --orange: #ff8a25;
    --dark: #1f2330;

    --gradient:
        linear-gradient(
            90deg,
            #f5386d 0%,
            #ff8a25 100%
        );
}


/* =====================================================
   BREADCRUMB
===================================================== */

.blog-breadcrumb {
    padding: 22px 0;

    border-top: 1px solid #f4eeee;

    background: #fff;
}

.blog-breadcrumb-list {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 10px;
}

.blog-breadcrumb-list a {
    color: #555;

    text-decoration: none;
}

.blog-breadcrumb-list a:hover {
    color: var(--pink);
}

.blog-breadcrumb-list i {
    color: #aaa;

    font-size: 7px;
}

.blog-breadcrumb-list span {
    color: var(--pink);

    font-weight: 600;
}


/* =====================================================
   BLOG HERO
===================================================== */

.blog-hero {
    position: relative;

    overflow: hidden;

    min-height: 535px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 83% 35%,
            rgba(245, 56, 109, .08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 138, 37, .06),
            transparent 25%
        ),
        #fff;
}

.blog-hero::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(245, 56, 109, .08);
}


/* =====================================================
   HERO CONTENT
===================================================== */

.blog-hero-content {
    position: relative;

    z-index: 3;
}

.blog-section-tag {
    display: inline-flex;

    padding: 8px 18px;

    border-radius: 30px;

    color: var(--pink);

    background: #fff0f4;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.blog-hero-content h1 {
    max-width: 600px;

    margin: 22px 0 0;

    color: var(--dark);

    font-size: 47px;
    font-weight: 700;

    line-height: 1.2;
}

.blog-hero-content h1 span {
    display: block;

    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-title-line {
    width: 58px;
    height: 3px;

    margin: 23px 0;

    border-radius: 20px;

    background: var(--gradient);
}

.blog-hero-content > p {
    max-width: 540px;

    color: #606060;

    font-size: 14px;
    line-height: 1.9;

    margin-bottom: 28px;
}


/* =====================================================
   BLOG SEARCH
===================================================== */

.blog-search {
    max-width: 560px;
}

.blog-search-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    padding: 6px;

    border: 1px solid #eee3e6;
    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 12px 35px rgba(31, 35, 48, .06);
}

.blog-search-wrapper > i {
    position: absolute;

    left: 20px;

    color: var(--pink);

    font-size: 13px;
}

.blog-search-wrapper input {
    flex: 1;

    min-width: 0;
    height: 48px;

    padding: 0 15px 0 45px;

    border: none;

    outline: none;

    color: #444;

    background: transparent;

    font-size: 14px;
}

.blog-search-wrapper button {
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border: none;
    border-radius: 9px;

    color: #fff;

    background: var(--gradient);

    font-size: 10px;
    font-weight: 700;

    transition: .3s ease;
}

.blog-search-wrapper button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(245, 56, 109, .2);
}


/* =====================================================
   POPULAR TOPICS
===================================================== */

.blog-popular-topics {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 15px;
}

.popular-label {
    color: #777;

    font-size: 12px;
    font-weight: 600;
}

.blog-popular-topics a {
    padding: 5px 10px;

    border-radius: 20px;

    color: #666;

    background: #f8f7f7;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: .3s ease;
}

.blog-popular-topics a:hover {
    color: #fff;

    background: var(--gradient);
}


/* =====================================================
   HERO STATS
===================================================== */

.blog-hero-stats {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 35px;
}

.blog-hero-stat strong {
    display: block;

    color: var(--pink);

    font-size: 30px;
    font-weight: 800;

    margin-bottom: 3px;
}

.blog-hero-stat span {
    color: #666;

    font-size: 12px;
    font-weight: 500;
}

.blog-stat-divider {
    width: 1px;
    height: 35px;

    background: #eadfe2;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.blog-hero-visual {
    position: relative;

    min-height: 520px;
}

.blog-hero-image {
    position: absolute;

    width: 76%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.blog-hero-image img {
    width: 100%;

    display: block;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.blog-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 180px;

    padding: 13px 15px;

    border: 1px solid rgba(245, 56, 109, .08);
    border-radius: 13px;

    background: rgba(255, 255, 255, .95);

    box-shadow:
        0 14px 35px rgba(31, 35, 48, .1);

    backdrop-filter: blur(10px);

    animation: blogFloat 4s ease-in-out infinite;
}

.blog-floating-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--pink);

    background: #fff0f4;
}

.blog-floating-icon i {
    font-size: 16px;
}

.blog-floating-card span {
    display: block;

    color: var(--pink);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .7px;

    margin-bottom: 3px;
}

.blog-floating-card h5 {
    color: var(--dark);

    font-size: 12px;
    font-weight: 700;

    margin: 0;
}

.blog-ai-card {
    top: 45px;
    right: 0;
}

.blog-code-card {
    left: 0;
    top: 210px;

    animation-delay: 1s;
}

.blog-cloud-card {
    right: 5px;
    bottom: 70px;

    animation-delay: 2s;
}


/* =====================================================
   READER BADGE
===================================================== */

.blog-reader-badge {
    position: absolute;

    z-index: 6;

    left: 70px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 17px;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 14px 35px rgba(31, 35, 48, .1);
}

.reader-images {
    display: flex;
}

.reader-images img {
    width: 33px;
    height: 33px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #fff;

    margin-left: -10px;
}

.reader-images img:first-child {
    margin-left: 0;
}

.blog-reader-badge strong {
    display: block;

    color: var(--pink);

    font-size: 14px;
    font-weight: 800;
}

.blog-reader-badge span {
    color: #777;

    font-size: 12px;
}


/* =====================================================
   FLOAT ANIMATION
===================================================== */

@keyframes blogFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .blog-hero {
        text-align: center;
    }

    .blog-hero-content h1,
    .blog-hero-content > p,
    .blog-search {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-popular-topics,
    .blog-hero-stats {
        justify-content: center;
    }

    .blog-hero-visual {
        max-width: 650px;

        margin: auto;
    }

}


@media (max-width: 576px) {

    .blog-hero-content h1 {
        font-size: 32px;
    }

    .blog-search-wrapper button {
        padding: 0 15px;
    }

    .blog-search-wrapper button i {
        display: none;
    }

    .blog-hero-stats {
        gap: 15px;
    }

    .blog-hero-stat strong {
        font-size: 17px;
    }

    .blog-hero-visual {
        min-height: 420px;
    }

    .blog-hero-image {
        width: 85%;
    }

    .blog-floating-card {
        min-width: 145px;

        padding: 10px;
    }

    .blog-floating-icon {
        width: 35px;
        height: 35px;
    }

    .blog-floating-card h5 {
        font-size: 8px;
    }

    .blog-ai-card {
        top: 30px;
    }

    .blog-code-card {
        top: 170px;
    }

    .blog-cloud-card {
        bottom: 50px;
    }

    .blog-reader-badge {
        left: 20px;
        bottom: 5px;
    }

}

/* =====================================================
   FEATURED BLOG SECTION
===================================================== */

.blog-featured-section {
    background: #fff;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.blog-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;
}

.blog-section-heading h2 {
    margin: 15px 0 0;

    color: var(--dark);

    font-size: 32px;
    font-weight: 700;
}

.blog-section-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--pink);

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}

.blog-view-all i {
    transition: .3s ease;
}

.blog-view-all:hover i {
    transform: translateX(5px);
}


/* =====================================================
   FEATURED BLOG CARD
===================================================== */

.featured-blog-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #f0e5e8;
    border-radius: 20px;

    background: #fff;

    transition: .35s ease;
}

.featured-blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(31, 35, 48, .08);
}


/* =====================================================
   FEATURED IMAGE
===================================================== */

.featured-blog-image {
    position: relative;

    height: 330px;

    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.featured-blog-card:hover
.featured-blog-image img {
    transform: scale(1.05);
}

.featured-category {
    position: absolute;

    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border-radius: 30px;

    color: var(--pink);

    background: #fff;

    font-size: 9px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(31, 35, 48, .1);
}

.featured-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 8px 14px;

    border-radius: 30px;

    color: #fff;

    background: var(--gradient);

    font-size: 8px;
    font-weight: 700;
}


/* =====================================================
   FEATURED CONTENT
===================================================== */

.featured-blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 8px;
}

.blog-meta span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #888;

    font-size: 11px;
}

.blog-meta i {
    color: var(--pink);
}

.featured-blog-content h3 {
    max-width: 650px;

    color: var(--dark);

    font-size: 25px;
    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 15px;
}

.featured-blog-content > p {
    color: #666;

    font-size: 12px;
    line-height: 1.8;

    margin-bottom: 25px;
}


/* =====================================================
   FEATURED FOOTER
===================================================== */

.featured-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid #f2eaec;
}

.blog-author {
    display: flex;
    align-items: center;

    gap: 11px;
}

.blog-author img {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    object-fit: cover;
}

.blog-author strong {
    display: block;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
}

.blog-author span {
    color: #888;

    font-size: 11px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 19px;

    border-radius: 8px;

    color: #fff;

    background: var(--gradient);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.blog-read-more:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(245, 56, 109, .25);
}


/* =====================================================
   TRENDING WRAPPER
===================================================== */

.trending-blog-wrapper {
    height: 100%;

    padding: 25px;

    border: 1px solid #f0e5e8;
    border-radius: 20px;

    background:
        linear-gradient(
            140deg,
            #fffafb,
            #fff
        );
}


/* =====================================================
   TRENDING HEADING
===================================================== */

.trending-blog-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;
}

.trending-blog-heading > div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.trending-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;

    background: var(--gradient);
}

.trending-icon i {
    font-size: 16px;
}

.trending-blog-heading h3 {
    color: var(--dark);

    font-size: 17px;
    font-weight: 700;

    margin: 0 0 3px;
}

.trending-blog-heading p {
    color: #888;

    font-size: 11px;

    margin: 0;
}

.trending-live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--pink);

    font-size: 7px;
    font-weight: 700;
}

.trending-live > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pink);

    animation: trendingPulse 1.5s infinite;
}

@keyframes trendingPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(245, 56, 109, .5);
    }

    70% {
        box-shadow:
            0 0 0 7px rgba(245, 56, 109, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(245, 56, 109, 0);
    }

}


/* =====================================================
   TRENDING CARD
===================================================== */

.trending-blog-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid #f1e8ea;
}

.trending-blog-card:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.trending-number {
    position: absolute;

    top: 14px;
    right: 0;

    color: #f4e7ea;

    font-size: 27px;
    font-weight: 800;
}

.trending-blog-image {
    width: 115px;
    height: 105px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 12px;
}

.trending-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}

.trending-blog-card:hover
.trending-blog-image img {
    transform: scale(1.08);
}

.trending-blog-content {
    position: relative;

    z-index: 2;

    flex: 1;
}

.trending-category {
    display: block;

    color: var(--pink);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .7px;

    margin-bottom: 6px;
}

.trending-blog-content h4 {
    max-width: 260px;

    color: var(--dark);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.45;

    margin-bottom: 8px;
}

.trending-meta {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 7px;
}

.trending-meta span {
    display: flex;
    align-items: center;

    gap: 5px;

    color: #999;

    font-size: 10px;
}

.trending-meta i {
    color: var(--pink);
}

.trending-blog-content a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--pink);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.trending-blog-content a i {
    transition: .3s ease;
}

.trending-blog-content a:hover i {
    transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .blog-section-heading {
        align-items: center;
    }

}


@media (max-width: 576px) {

    .blog-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-section-heading h2 {
        font-size: 27px;
    }

    .featured-blog-image {
        height: 230px;
    }

    .featured-blog-content {
        padding: 22px 18px;
    }

    .featured-blog-content h3 {
        font-size: 20px;
    }

    .featured-blog-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-read-more {
        width: 100%;
    }

    .trending-blog-wrapper {
        padding: 20px 16px;
    }

    .trending-blog-image {
        width: 90px;
        height: 95px;
    }

    .trending-blog-content h4 {
        font-size: 10px;
    }

    .trending-number {
        font-size: 22px;
    }

}

/* =====================================================
   LATEST BLOG SECTION
===================================================== */

.latest-blog-section {
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #fffafa 0%,
            #fff 100%
        );
}

.blog-heading-text {
    max-width: 650px;

    margin: 20px auto 0;

    color: #666;

    font-size: 12px;
    line-height: 1.8;
}

.section-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =====================================================
   BLOG CATEGORY FILTER
===================================================== */

.blog-category-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 40px;
}

.blog-filter-btn {
    padding: 10px 19px;

    border: 1px solid #eee1e5;
    border-radius: 30px;

    color: #666;

    background: #fff;

    font-size: 12px;
    font-weight: 600;

    transition: .3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    color: #fff;

    border-color: transparent;

    background: var(--gradient);

    box-shadow:
        0 8px 22px rgba(245, 56, 109, .2);
}


/* =====================================================
   LATEST BLOG CARD
===================================================== */

.blog-grid-item {
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.latest-blog-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #f0e5e8;
    border-radius: 17px;

    background: #fff;

    transition: .35s ease;
}

.latest-blog-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 56, 109, .2);

    box-shadow:
        0 18px 45px rgba(31, 35, 48, .08);
}


/* =====================================================
   BLOG IMAGE
===================================================== */

.latest-blog-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.latest-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.latest-blog-card:hover
.latest-blog-image img {
    transform: scale(1.07);
}

.latest-blog-category {
    position: absolute;

    left: 17px;
    bottom: 15px;

    padding: 7px 13px;

    border-radius: 30px;

    color: var(--pink);

    background: rgba(255, 255, 255, .95);

    font-size: 8px;
    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(31, 35, 48, .1);
}


/* =====================================================
   BLOG CONTENT
===================================================== */

.latest-blog-content {
    padding: 23px;
}

.latest-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 13px;
}

.latest-blog-meta span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #999;

    font-size: 11px;
}

.latest-blog-meta i {
    color: var(--pink);
}

.latest-blog-content h3 {
    color: var(--dark);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.5;

    margin-bottom: 12px;
}

.latest-blog-content > p {
    color: #666;

    font-size: 12px;
    line-height: 1.8;

    margin-bottom: 15px;
}


/* =====================================================
   BLOG CARD FOOTER
===================================================== */

.latest-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 13px;

    border-top: 1px solid #f2eaec;
}

.latest-blog-author {
    display: flex;
    align-items: center;

    gap: 10px;
}

.latest-blog-author img {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    object-fit: cover;
}

.latest-blog-author strong {
    display: block;

    color: var(--dark);

    font-size: 14px;
    font-weight: 700;
}

.latest-blog-author span {
    color: #999;

    font-size: 12px;
}

.latest-blog-footer > a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #f0d9df;
    border-radius: 50%;

    color: var(--pink);

    text-decoration: none;

    transition: .3s ease;
}

.latest-blog-footer > a:hover {
    color: #fff;

    border-color: transparent;

    background: var(--gradient);

    transform: translateX(3px);
}


/* =====================================================
   FILTER
===================================================== */

.blog-grid-item.blog-hidden {
    display: none;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 576px) {

    .blog-category-filter {
        gap: 7px;

        margin-bottom: 30px;
    }

    .blog-filter-btn {
        padding: 8px 12px;

        font-size: 8px;
    }

    .latest-blog-image {
        height: 230px;
    }

    .latest-blog-content {
        padding: 20px;
    }

    .latest-blog-content h3 {
        font-size: 15px;
    }

}

/* =====================================================
   BLOG COMMUNITY SECTION
===================================================== */

.blog-community-section {
    overflow: hidden;

    background: #fff;
}


/* =====================================================
   POPULAR POSTS CARD
===================================================== */

.popular-posts-card {
    height: 100%;

    padding: 32px;

    border: 1px solid #f0e5e8;
    border-radius: 20px;

    background: #fff;
}

.popular-posts-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}

.popular-posts-heading h2 {
    margin: 15px 0 0;

    color: var(--dark);

    font-size: 27px;
    font-weight: 700;
}

.popular-posts-heading h2 span {
    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popular-heading-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: #fff;

    background: var(--gradient);

    box-shadow:
        0 10px 25px rgba(245, 56, 109, .2);
}

.popular-heading-icon i {
    font-size: 20px;
}


/* =====================================================
   POPULAR POST ITEM
===================================================== */

.popular-post-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px 0;

    border-bottom: 1px solid #f1e8ea;
}

.popular-post-item:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.popular-post-number {
    color: #f3e4e8;

    font-size: 27px;
    font-weight: 800;
}

.popular-post-image {
    width: 115px;
    height: 95px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 12px;
}

.popular-post-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}

.popular-post-item:hover
.popular-post-image img {
    transform: scale(1.08);
}

.popular-post-content {
    flex: 1;
}

.popular-post-category {
    display: block;

    margin-bottom: 6px;

    color: var(--pink);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .7px;
}

.popular-post-content h3 {
    max-width: 390px;

    color: var(--dark);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.5;

    margin-bottom: 9px;
}

.popular-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;
}

.popular-post-meta span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #999;

    font-size: 10px;
}

.popular-post-meta i {
    color: var(--pink);
}

.popular-post-arrow {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #efdce1;
    border-radius: 50%;

    color: var(--pink);

    text-decoration: none;

    transition: .3s ease;
}

.popular-post-arrow:hover {
    color: #fff;

    border-color: transparent;

    background: var(--gradient);

    transform: translateX(4px);
}


/* =====================================================
   NEWSLETTER
===================================================== */

.blog-newsletter-card {
    position: relative;

    height: 100%;
    min-height: 520px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 45px;

    border-radius: 20px;

    color: #fff;

    background: var(--gradient);

    box-shadow:
        0 20px 50px rgba(245, 56, 109, .18);
}

.newsletter-content {
    position: relative;

    z-index: 3;

    width: 100%;
}

.newsletter-decoration {
    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);
}

.newsletter-circle-one {
    width: 280px;
    height: 280px;

    top: -130px;
    right: -100px;
}

.newsletter-circle-two {
    width: 180px;
    height: 180px;

    left: -90px;
    bottom: -80px;
}

.newsletter-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .17);
}

.newsletter-icon i {
    color: #fff;

    font-size: 25px;
}

.newsletter-small-title {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, .8);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.blog-newsletter-card h2 {
    color: #fff;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 15px;
}

.blog-newsletter-card h2 span {
    display: block;
}

.blog-newsletter-card p {
    max-width: 420px;

    color: rgba(255, 255, 255, .85);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 25px;
}


/* =====================================================
   NEWSLETTER FORM
===================================================== */

.newsletter-form {
    margin-bottom: 18px;
}

.newsletter-input {
    position: relative;

    margin-bottom: 10px;
}

.newsletter-input i {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: var(--pink);

    font-size: 18px;
}

.newsletter-input input {
    width: 100%;
    height: 52px;

    padding: 0 18px 0 45px;

    border: none;
    border-radius: 10px;

    outline: none;

    color: #444;

    background: #fff;

    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 10px;

    color: #fff;

    background: rgba(255, 255, 255, .14);

    font-size: 15px;
    font-weight: 700;

    transition: .3s ease;
}

.newsletter-form button:hover {
    color: var(--pink);

    background: #fff;

    transform: translateY(-2px);
}


/* =====================================================
   NEWSLETTER INFO
===================================================== */

.newsletter-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 25px;
}

.newsletter-info span {
    display: flex;
    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, .85);

    font-size: 14px;
}

.newsletter-info i {
    font-size: 14px;
}


/* =====================================================
   NEWSLETTER READERS
===================================================== */

.newsletter-readers {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .2);
}

.newsletter-reader-images {
    display: flex;
}

.newsletter-reader-images img {
    width: 35px;
    height: 35px;

    margin-left: -10px;

    border: 3px solid rgba(255, 255, 255, .8);
    border-radius: 50%;

    object-fit: cover;
}

.newsletter-reader-images img:first-child {
    margin-left: 0;
}

.newsletter-readers strong {
    display: block;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 2px;
}

.newsletter-readers span {
    color: rgba(255, 255, 255, .7);

    font-size: 12px;
}


/* =====================================================
   FINAL BLOG CTA
===================================================== */

.blog-final-cta {
    background: #fff;
}

.blog-cta-wrapper {
    position: relative;

    overflow: hidden;

    padding: 42px 45px;

    border-radius: 22px;

    background:
        linear-gradient(
            110deg,
            #1f2330,
            #2d3142
        );

    box-shadow:
        0 20px 50px rgba(31, 35, 48, .15);
}

.blog-cta-wrapper .row {
    position: relative;

    z-index: 3;
}

.blog-cta-shape {
    position: absolute;

    border-radius: 50%;
}

.blog-cta-shape-one {
    width: 300px;
    height: 300px;

    right: -100px;
    top: -170px;

    background: rgba(245, 56, 109, .12);
}

.blog-cta-shape-two {
    width: 180px;
    height: 180px;

    left: 35%;
    bottom: -150px;

    background: rgba(255, 138, 37, .1);
}

.blog-cta-icon {
    width: 90px;
    height: 90px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: var(--gradient);

    box-shadow:
        0 12px 30px rgba(245, 56, 109, .25);
}

.blog-cta-icon i {
    font-size: 34px;
}

.blog-cta-small {
    display: block;

    margin-bottom: 8px;

    color: var(--pink);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.blog-cta-wrapper h2 {
    color: #fff;

    font-size: 27px;
    font-weight: 700;

    margin-bottom: 10px;
}

.blog-cta-wrapper p {
    max-width: 620px;

    color: rgba(255, 255, 255, .7);

    font-size: 12px;
    line-height: 1.8;

    margin: 0;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 30px;

    color: #fff;

    background: var(--gradient);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: .3s ease;
}

.blog-cta-btn:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(245, 56, 109, .3);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .blog-cta-wrapper {
        padding: 40px 35px;

        text-align: center;
    }

    .blog-cta-icon {
        margin-bottom: 25px;
    }

    .blog-cta-wrapper p {
        margin: auto;
    }

}


@media (max-width: 576px) {

    .popular-posts-card {
        padding: 25px 18px;
    }

    .popular-posts-heading h2 {
        font-size: 23px;
    }

    .popular-heading-icon {
        width: 48px;
        height: 48px;
    }

    .popular-post-item {
        align-items: flex-start;

        gap: 10px;
    }

    .popular-post-number {
        display: none;
    }

    .popular-post-image {
        width: 85px;
        height: 85px;
    }

    .popular-post-content h3 {
        font-size: 10px;
    }

    .popular-post-arrow {
        width: 32px;
        height: 32px;
    }

    .blog-newsletter-card {
        min-height: auto;

        padding: 35px 25px;
    }

    .blog-newsletter-card h2 {
        font-size: 26px;
    }

    .newsletter-info {
        gap: 10px;
    }

    .blog-cta-wrapper {
        padding: 35px 20px;
    }

    .blog-cta-icon {
        width: 72px;
        height: 72px;
    }

    .blog-cta-icon i {
        font-size: 27px;
    }

    .blog-cta-wrapper h2 {
        font-size: 22px;
    }

}