*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #282828;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: #e6187c;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 2.2;
}
ul li {
    list-style: none;
}
.site-header {
    background: #232323;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-navbar {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu .menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.menu-list>li{
    position:relative;
}
.nav-item:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e6187c;
    transition: 0.5s all;
}
.nav-item:hover:before {
    width: 100%;
}

.arrow{
    font-size:11px;
    transition:.3s;
}
.submenu{
    position:absolute;
    top:120%;
    left:0;
    width:220px;
    background:#fff;
    border-radius:12px;
    padding: 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

ul.submenu li {
    padding: 0;
}
.submenu li a{
    display:block;
    padding:12px 20px;
    color:#000;
    text-decoration:none;
    transition:.3s;
}

.submenu li a:hover{
    background:#222;
    color:#ffd700;
}

.has-submenu:hover>.submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.has-submenu:hover>.nav-item .arrow{
    transform:rotate(180deg);
}
.nav-item a {
    color: #fff;
}

.btn {
    border-radius: 0;
    padding: 10px 25px;
}

.nav-item {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.5s all;
    padding: 10px 0;
}

.active-link a {
    color: #ffffffb3;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-signin {
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
}

.btn-signup {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}
.logo {
    width: 270px;
    height: 46px;
}

/* Mobile */
@media (max-width: 992px) {
    .nav-menu {
        position: absolute;
        top: 65px;
        left: -100%;
        width: 288px;
        background: #232323;
        flex-direction: column;
        padding: 7px;
        gap: 20px;
        transition: 0.3s;
        height: 100vh;
    }
    .nav-menu .menu-list {
        display: flex;
        align-items: self-start;
        gap: 5px;
        margin-bottom: 0;
        flex-direction: column;
        padding-left: 0;
        overflow: hidden;
        width: 100%;
    }
    .nav-item {
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-signin {
        display: none;
    }
    .nav-item {
        padding: 10px;
        background: #232323;
        border: 1px solid #8f1d54;
    }

    .menu-toggle {
        display: block;
        background: #fff;
        padding: 0 10px;
        border-radius: 7px;
        color: #e6187c;
    }
    .has-submenu.nav-item.open .submenu {
        position: relative;
    }
    .has-submenu.nav-item.open .submenu li {
        background: #fff;
    }
    .logo {
        width: 215px;
        height: 37px;
    }
    .menu-list .nav-item:hover > .navigation-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: relative;
        top: 0;
        left: 0;
    }
}

/* Masonry-style Grid System */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
}
.editorial-section {
    padding: 80px 0;
}
.minimal-card {
    background: #232323;
    border: 1px solid #e6187c;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.minimal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 30px -10px rgba(59, 130, 246, 0.3);
}

.card-img-container {
    position: relative;
    /* height: 180px; */
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.minimal-card:hover .card-img-container img {
    transform: scale(1.06);
}
.year-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e6187c;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Details Section */
.card-details {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.month-num {
        font-size: 3rem;
    font-weight: 100;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.35);
    font-family: Georgia, serif;
}

.month-heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.03em;
    color: #f1f5f9;
}
.minimal-footer {
    background-color: #070a12;
    color: #94a3b8;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #f8fafc;
}

.footer-nav li a {
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #e6187c;
}

.copyright-text {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.edition-tag {
    color: #64748b;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Body Theme */
/* Deep Modern Dark Stack Body */
.modern-stack-body {
    background-color: #030712;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Wrapper Container Box */
.stack-wrapper-box {
    max-width: 800px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Edition Tag */
.badge-edition {
    display: inline-block;
    background: rgba(202, 59, 246, 0.15);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(193, 59, 246, 0.3);
}

/* Individual Stack Row Card */
.year-stack-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.year-stack-card:hover {
    background: #442748;
    border-color: rgba(245, 96, 250, 0.4);
    transform: translateX(4px);
}

/* Active Selected Card State */
.year-stack-card.active-year-card {
    background: #fff;
    border-color: #f63bd6;
    box-shadow: 0 4px 20px rgb(226 59 246 / 25%);
}
.year-stack-card.active-year-card .year-title {
    color: #000;
}
/* Left side elements (Image + Text) */
.card-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stack-img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.stack-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 2px;
}

.year-desc {
    font-size: 0.825rem;
}

/* Status Indicator Pill */
.status-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.status-indicator.active-status {
    background: #e6187c;
    color: #ffffff;
    border-color: #e6187c;
}

/* Proceed Button Style */
.btn-proceed {
    background: #e6187c;
    color: #ffffff;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-proceed:hover {
    background: #8a0578;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Dashboard Dark Body */
.dashboard-body {
    background-color: #020617;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Floating Card Container */
.dashboard-card-box {
    max-width: 900px;
    background: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Badge Edition */
.badge-edition-pill {
    display: inline-block;
    background: rgb(233 14 196 / 15%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgb(233 14 206 / 30%);
}

/* Glowing Search Box */
.search-box-glow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #e4287d;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.search-box-glow:focus-within {
    border-color: #e6187c;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    z-index: 5;
}

/* Individual Bento Dashboard Month Card */
.dash-month-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.dash-month-card:hover {
    transform: translateY(-4px);
    background: #273548;
    border-color: rgba(56, 189, 248, 0.3);
}

/* Month Index Badge */
.month-index {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* Glowing Status Dot */
.status-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
    transition: all 0.3s ease;
}

/* Typography Inside Card */
.month-name-hi {
    font-size: 1.15rem;
    font-weight: 700;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.month-name-en {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Active Selected Card State */
.dash-month-card.active {
    background: #fff;
    border-color: #e6187c;
    box-shadow: 0 8px 25px rgb(233 14 176 / 15%);
}

.dash-month-card.active .month-name-hi {
    color: #e6187c;
}

.dash-month-card.active .status-indicator-dot {
    background: #e6187c;
    box-shadow: 0 0 10px #e6187c, 0 0 20px #e6187c;
}

/* Proceed Button Gradient */
.btn-dash-proceed {
    background: linear-gradient(135deg, #e6187c, #830743);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 20px rgba(215, 14, 233, 0.4);
    transition: all 0.3s ease;
}

.btn-dash-proceed:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(215, 14, 233, 0.4);
    color: #ffffff;
}


.slick-prev, .slick-next {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    font-size: 0;
    transform: translateY(-50%);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.slick-prev:hover,
.slick-next:hover {
    background: #8f0748;
}

/* Left Arrow Position */
.slick-prev {
    left: -60px;
}

/* Right Arrow Position */
.slick-next {
    right: -60px;
}

/* Default Icon Color */
.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #e6187c;
    opacity: 1;
}

/* Hover Icon */
.slick-prev:hover:before,
.slick-next:hover:before {
    color: #fff;
}
.slick-prev:before {
    content: "❮";
}

.slick-next:before {
    content: "❯";
}
.slick-prev:before,
.slick-next:before {
     font-family: inherit;
    font-size: 20px;
    color: #e6187c;
    opacity: 1;
}
.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}
.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 30px;
    font-size: 0;
    transition: all .3s ease;
    border: 1px solid #e6187c;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    width: 40px;
    background: #e6187c;
}
.action-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.share-btn,
.download-btn {
    padding: 10px 15px;

    border-radius: 5px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}

.share-btn {
    background: #ffffff;
    border: 1px solid #e3e5eb;
    color: #33394c;
}

.share-btn:hover {
    border-color: #ed1974;
    color: #ed1974;
}

.download-btn {
    background: #e91b70;
    border: 1px solid #e91b70;
    color: #ffffff;
}

.download-btn:hover {
    background: #c90058;
}
.comments-section {
    grid-template-columns: 1.08fr 0.92fr;
    border: 1px solid #ececf0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(19, 25, 43, 0.06);
}

/* =====================================================
   COMMENTS SECTION
===================================================== */

.article-comments-section {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;

    border: 1px solid #ececf0;
    border-radius: 8px;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 4px 18px rgba(19, 25, 43, 0.06);
}
.feedback-box {
    padding: 13px 16px 14px;
    border-right: 1px solid #eeeeef;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.heading-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ef1772;
    font-size: 16px;
}

.section-heading h3 {
    margin: 0;
    color: #171d31;
    font-size: 16px;
    font-weight: 700;
}

.section-heading p {
    margin-top: 5px;
    color: #888d9c;
    font-size: 16px;
}


/* =====================================================
   FORM
===================================================== */

.feedback-form textarea {
    width: 100%;
    height: 86px;

    resize: vertical;

    border: 1px solid #dedfe4;
    border-radius: 5px;

    padding: 12px;

    outline: none;

    font-size: 16px;
    color: #333;

    transition: 0.3s ease;
}

.feedback-form textarea:focus,
.feedback-form input:focus {
    border-color: #ed1974;
    box-shadow: 0 0 0 2px rgba(237, 25, 116, 0.08);
}

.feedback-form textarea::placeholder,
.feedback-form input::placeholder {
    color: #9295a0;
}


.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 10px;
}

.input-row input {
    width: 100%;
    /* height: 33px; */
    border: 1px solid #dedfe4;
    border-radius: 5px;
    outline: none;
    padding: 10px 10px;
    font-size: 16px;
}

.form-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 9px;
}

.form-button button {
    padding: 10px 18px;
    border: 0;
    border-radius: 4px;
    background: #e91b70;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s ease;
}

.form-button button:hover {
    background: #81063b;
}


/* =====================================================
   RECENT COMMENTS
===================================================== */

.recent-comments {
    padding: 13px 17px;
}

.comments-heading {
    margin-bottom: 2px;
}

.comment-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid #eeeeef;
}

.avatar {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;
}

.avatar-pink {
    color: #b52c78;
    background: #f9e3ef;
    border: 1px solid #eab4d0;
}

.avatar-blue {
    color: #3c63b4;
    background: #e4edff;
    border: 1px solid #b6c9ee;
}

.avatar-green {
    color: #438544;
    background: #e8f8e6;
    border: 1px solid #b9dfb6;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.comment-top strong {
    color: #24293a;
    font-size: 16px;
}

.comment-top span {
    color: #999eaa;
    font-size: 14px;
}

.comment-content p {
    margin-top: 4px;
    color: #777c89;
    font-size: 16px;
    line-height: 1.4;
}

.view-comments {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    color: #e91b70;

    font-size: 16px;
    font-weight: 700;
    transition: 0.5s all;
}

.view-comments svg {
    transition: 0.3s ease;
}

.view-comments:hover {
    transform: translateX(4px);
    color: #000;
}
.view-comments:hover svg {
    transform: translateX(4px);
    color: #e91b70;
}
.hero-bg {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}


.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: #ffffff;
    font-size: 14px;

    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
}


/* Facebook */

.social-icon.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}


/* Instagram */

.social-icon.instagram:hover {
    background: #e4405f;
    color: #ffffff;
}


/* YouTube */

.social-icon.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}


/* LinkedIn */

.social-icon.linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
}
div#navMenu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-search {
    display: flex;
    align-items: center;
    justify-content: end;
}

.search-form {
    width: 80%;
    height: 36px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;

    transition: all 0.3s ease;
}

.search-form:focus-within {
    width: 100%;
    border-color: #ed1974;
    box-shadow: 0 0 0 3px rgba(237, 25, 116, 0.12);
}

.search-form input {
    width: 100%;
    height: 100%;
    padding: 10px 25px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222;
    font-size: 15px;
}

.search-form input::placeholder {
    color: #8b8b8b;
}

.search-form button {
    flex: 0 0 40px;

    width: 40px;
    height: 36px;

    border: 0;
    outline: 0;

    background: #ed1974;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;
}

.search-form button:hover {
    background: #c90058;
}

.search-form button i {
    font-size: 13px;
}
/* ==========================================
   FOOTER NEWSLETTER
========================================== */

.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


/* Newsletter Content */

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.newsletter-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237, 25, 116, 0.12);
    border: 1px solid rgba(237, 25, 116, 0.35);

    color: #ed1974;

    font-size: 18px;
}

.newsletter-text h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 700;
}

.newsletter-text p {
    margin: 0;

    color: #a9b0be;

    font-size: 16px;
    line-height: 1.5;
}


/* Newsletter Form */

.newsletter-form {
    width: 390px;
    height: 42px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;

    background: rgba(255, 255, 255, 0.06);
}

.newsletter-form input {
    width: 100%;
    height: 100%;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #9ba3b2;
}

.newsletter-form button {
    height: 100%;

    padding: 0 17px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 7px;

    border: 0;

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #c90058;
}

.newsletter-form button i {
    font-size: 16px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .footer-newsletter {
        padding: 20px 0;
    }

    .newsletter-content {
        align-items: flex-start;
    }

    .newsletter-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .newsletter-text h3 {
        font-size: 18px;
    }

    .newsletter-text p {
        font-size: 16px;
    }

    .newsletter-form {
        height: 40px;
        max-width: 100%;
    }

    .newsletter-form input {
        font-size: 16px;
    }

    .newsletter-form button {
        padding: 0 13px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .comments-section {
    grid-template-columns: 1fr;
}
}

/* ==========================================
   SUBSCRIPTION SECTION
========================================== */

.subscription-section {
    padding: 60px 0;
    background: #f7f8fc;
}

.subscription-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e8e9ef;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(20, 27, 45, 0.08);
    overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */

.subscription-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 28px;
    background: #101b2c;
    color: #ffffff;
}

.subscription-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #ed1974;
    font-size: 18px;
}

.subscription-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.subscription-header p {
    margin: 6px 0 0;
    color: #b8bfcb;
    font-size: 16px;
}


/* ==========================================
   FORM
========================================== */

.subscription-form {
    padding: 30px;
}

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

.form-group {
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}


/* ==========================================
   LABEL
========================================== */

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: #242a3b;

    font-size: 16px;
    font-weight: 700;
}

.form-group label span {
    color: #ed1974;
}


/* ==========================================
   INPUT
========================================== */

.input-wrapper {
    min-height: 50px;

    display: flex;
    align-items: center;

    border: 1px solid #dedfe5;
    border-radius: 8px;

    background: #ffffff;
    overflow: hidden;

    transition: 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #ed1974;
    box-shadow: 0 0 0 3px rgba(237, 25, 116, 0.08);
}

.input-wrapper > svg {
    width: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ed1974;
    font-size: 16px;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #252a39;
    font-size: 16px;
}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #9a9eaa;
    font-size: 16px;
}


/* ==========================================
   TEXTAREA
========================================== */

.textarea-wrapper {
    height: auto;
    align-items: baseline;
}

.textarea-wrapper > i {
    padding-top: 17px;
}

.input-wrapper textarea {
    min-height: 110px;

    padding: 15px 14px 15px 0;

    resize: vertical;

    line-height: 1.5;
    font-size: 16px;
}


/* ==========================================
   SELECT
========================================== */

.select-wrapper {
    position: relative;
}

.input-wrapper select {
    height: 50px;
    padding-right: 40px;

    cursor: pointer;
    font-size: 16px;
}


/* ==========================================
   FORM FOOTER
========================================== */

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid #eeeeef;
}

.required-note {
    margin: 0;

    color: #8b8f9c;
    font-size: 16px;
}

.required-note span {
    color: #ed1974;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.subscription-submit {
    min-height: 50px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 0;
    border-radius: 7px;

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.subscription-submit:hover {
    background: #c90058;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(237, 25, 116, 0.22);
}

.subscription-submit svg {
    font-size: 16px;
    transition: 0.3s ease;
}

.subscription-submit:hover svg {
    transform: translateX(4px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 767px) {

    .subscription-section {
        padding: 40px 0;
    }

    .subscription-header {
        padding: 22px;
    }

    .subscription-header h2 {
        font-size: 22px;
    }

    .subscription-form {
        padding: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .subscription-submit {
        justify-content: center;
        width: 100%;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 480px) {

    .subscription-header {
        padding: 18px;
    }

    .subscription-icon {
        width: 44px;
        height: 44px;
    }

    .subscription-header h2 {
        font-size: 20px;
    }

    .subscription-header p {
        font-size: 16px;
    }

    .subscription-form {
        padding: 18px;
    }

    .form-group label {
        font-size: 16px;
    }

    .input-wrapper {
        min-height: 50px;
    }

    .input-wrapper input,
    .input-wrapper select {
        height: 50px;
        font-size: 16px;
    }

    .input-wrapper textarea {
        font-size: 16px;
    }

    .input-wrapper input::placeholder,
    .input-wrapper textarea::placeholder {
        font-size: 16px;
    }

    .required-note {
        font-size: 16px;
    }

    .subscription-submit {
        min-height: 50px;
        font-size: 16px;
    }
}

/* ==========================================
   USER ACCOUNT
========================================== */

.user-account {
    display: flex;
    align-items: center;
}

.user-btn {
    min-height: 36px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 4px 12px 4px 5px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.05);

    transition: all 0.3s ease;
}

.user-btn:hover {
    border-color: #ed1974;
    background: #ed1974;
    color: #ffffff;
}

.user-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #ed1974;

    font-size: 14px;

    transition: 0.3s ease;
}

.user-btn:hover .user-icon {
    background: #ffffff;
    color: #ed1974;
}

.user-text {
    font-size: 16px;
    font-weight: 600;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .user-account {
        width: 100%;
        justify-content: center;

        padding-top: 12px;
        margin-top: 8px;

        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .user-btn {
        min-height: 42px;
        padding: 5px 18px 5px 7px;
    }

    .user-icon {
        width: 30px;
        height: 30px;
    }

    .user-text {
        font-size: 16px;
    }
}
/* ==========================================
   SUBSCRIPTION PLAN
========================================== */

.subscription-plan-section {
    padding: 60px 0;
    background: #fff;
}


/* ==========================================
   PLAN HEADER
========================================== */

.plan-header {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
}

.plan-header > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #ed1974;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.plan-header h2 {
    margin: 0 0 10px;

    color: #101b2c;

    font-size: 32px;
    font-weight: 800;
}

.plan-header p {
    margin: 0;

    color: #737987;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================
   PLAN WRAPPER
========================================== */

.plan-wrapper {
    display: flex;
    justify-content: center;
}


/* ==========================================
   PLAN CARD
========================================== */

.subscription-plan-card {
    position: relative;

    width: 100%;
    max-width: 390px;

    padding: 35px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e6e7ec;
    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(16, 27, 44, 0.09);

    overflow: hidden;

    transition: all 0.35s ease;
}

.subscription-plan-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(16, 27, 44, 0.14);

    border-color: rgba(237, 25, 116, 0.35);
}


/* ==========================================
   BADGE
========================================== */

.plan-badge {
    position: absolute;

    top: 18px;
    right: -35px;

    width: 145px;

    padding: 7px 0;

    transform: rotate(45deg);

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* ==========================================
   ICON
========================================== */

.plan-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237, 25, 116, 0.1);

    color: #ed1974;

    font-size: 25px;
}


/* ==========================================
   PLAN TITLE
========================================== */

.subscription-plan-card h3 {
    margin: 0 0 18px;

    color: #101b2c;

    font-size: 22px;
    font-weight: 700;
}


/* ==========================================
   PRICE
========================================== */

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;

    margin-bottom: 15px;

    color: #101b2c;
}

.currency {
    font-size: 24px;
    font-weight: 700;
}

.amount {
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
}

.duration {
    margin-left: 6px;

    color: #777d8b;

    font-size: 16px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.plan-description {
    margin: 0 auto 25px;

    max-width: 300px;

    color: #777d8b;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================
   FEATURES
========================================== */

.plan-features {
    margin: 0 0 28px;
    padding: 20px 0 0;

    list-style: none;

    text-align: left;

    border-top: 1px solid #eeeeef;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: #3f4554;

    font-size: 16px;
}

.plan-features li svg {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(237, 25, 116, 0.1);

    color: #ed1974;

    font-size: 15px;
}


/* ==========================================
   BUTTON
========================================== */

.plan-button {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 7px;

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #c90058;

    box-shadow: 0 10px 25px rgba(237, 25, 116, 0.25);
}

.plan-button i {
    transition: 0.3s ease;
}

.plan-button:hover i {
    transform: translateX(4px);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 480px) {

    .subscription-plan-section {
        padding: 40px 15px;
    }

    .plan-header h2 {
        font-size: 26px;
    }

    .plan-header p {
        font-size: 16px;
    }

    .subscription-plan-card {
        padding: 30px 22px;
    }

    .amount {
        font-size: 46px;
    }

    .plan-description,
    .plan-features li,
    .duration {
        font-size: 16px;
    }
}

/* ==========================================
   ACCOUNT PAGE
========================================== */

.account-section {
    padding: 45px 0 70px;
    background: #f6f7fb;
    min-height: calc(100vh - 65px);
}


/* ==========================================
   ACCOUNT HEADER
========================================== */

.account-header-title {
    margin-left: auto;
    margin-right: 25px;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.account-header-title i {
    color: #ed1974;
}

.back-home {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 16px;

    transition: 0.3s ease;
}

.back-home:hover {
    color: #ed1974;
}


/* ==========================================
   WELCOME
========================================== */

.account-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 30px;
    margin-bottom: 25px;

    background: #ffffff;

    border: 1px solid #e6e7ec;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(16, 27, 44, 0.05);
}

.welcome-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(237, 25, 116, 0.1);
    color: #ed1974;

    font-size: 24px;
}

.welcome-user span {
    color: #8a8f9d;
    font-size: 16px;
}

.welcome-user h1 {
    margin: 3px 0;

    color: #101b2c;

    font-size: 27px;
}

.welcome-user p {
    margin: 0;

    color: #777d8b;

    font-size: 16px;
}

.edit-profile-btn {
    min-height: 45px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 8px;

    border-radius: 7px;

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;
}

.edit-profile-btn:hover {
    background: #c90058;
}


/* ==========================================
   ACCOUNT LAYOUT
========================================== */

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
}


/* ==========================================
   SIDEBAR
========================================== */

.account-sidebar {
    align-self: start;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5e6eb;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(16, 27, 44, 0.05);
}

.sidebar-profile {
    padding-bottom: 20px;
    margin-bottom: 12px;

    text-align: center;

    border-bottom: 1px solid #eeeeef;
}

.sidebar-avatar {
    width: 62px;
    height: 62px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #101b2c;
    color: #ffffff;

    font-size: 24px;
}

.sidebar-profile h3 {
    margin: 0 0 5px;

    color: #101b2c;

    font-size: 17px;
}

.sidebar-profile p {
    margin: 0;

    color: #8b909c;

    font-size: 16px;
}


/* ==========================================
   ACCOUNT MENU
========================================== */

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.account-menu-item svg {
    width: 20px;

    color: #8b909d;

    text-align: center;
}

.account-menu-item:hover {
    background: #fff0f6;
    color: #ed1974;
}

.account-menu-item:hover svg {
    color: #ed1974;
}

.account-menu-item.active {
    background: #ed1974;
    color: #ffffff;
}

.account-menu-item.active svg {
    color: #ffffff;
}


/* ==========================================
   LOGOUT
========================================== */

.logout-btn {
    min-height: 45px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #f0d9e3;
    border-radius: 7px;
    color: #df245f;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    width: 100%;
}

.logout-btn:hover {
    background: #fff1f5;
}


/* ==========================================
   ACCOUNT CARD
========================================== */

.account-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.account-card {
    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5e6eb;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(16, 27, 44, 0.05);
}


/* ==========================================
   CARD TITLE
========================================== */

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-bottom: 18px;
    margin-bottom: 20px;

    border-bottom: 1px solid #eeeeef;
}

.card-title-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(237, 25, 116, 0.1);
    color: #ed1974;

    font-size: 17px;
}

.card-title h2 {
    margin: 0 0 3px;

    color: #101b2c;

    font-size: 20px;
}

.card-title p {
    margin: 0;

    color: #888d99;

    font-size: 16px;
}


/* ==========================================
   PROFILE DETAILS
========================================== */

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

.profile-detail {
    padding: 14px 16px;

    background: #f8f9fc;

    border-radius: 7px;
}

.profile-detail span {
    display: block;

    margin-bottom: 5px;

    color: #888d99;

    font-size: 16px;
}

.profile-detail strong {
    color: #252b3a;

    font-size: 16px;
}


/* ==========================================
   SUBSCRIPTION
========================================== */

.subscription-status {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 25px;

    padding: 22px;

    border-radius: 10px;

    background: #101b2c;
    color: #ffffff;
}

.subscription-plan > span {
    color: #b5bdc9;
    font-size: 16px;
}

.subscription-plan h3 {
    margin: 7px 0 8px;

    font-size: 20px;
}

.subscription-price {
    color: #ed1974;

    font-size: 30px;
    font-weight: 800;
}

.subscription-price small {
    color: #aeb5c1;

    font-size: 16px;
    font-weight: 400;
}

.subscription-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.subscription-info div {
    padding-left: 15px;

    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.subscription-info span {
    display: block;

    margin-bottom: 7px;

    color: #aeb5c1;

    font-size: 16px;
}

.subscription-info strong {
    color: #ffffff;

    font-size: 16px;
}

.subscription-info .status-active {
    color: #50d88a;
}


/* ==========================================
   FEATURE GRID
========================================== */

.account-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    min-height: 82px;

    padding: 15px;

    display: flex;
    align-items: center;
    gap: 13px;

    border: 1px solid #e7e8ed;
    border-radius: 9px;

    color: #252b3a;

    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #ed1974;

    background: #fffafd;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(237, 25, 116, 0.08);
}

.feature-card strong {
    display: block;

    margin-bottom: 5px;

    font-size: 16px;
}

.feature-card span {
    color: #8a8f9c;

    font-size: 16px;
}

.feature-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 17px;
}

.feature-icon.magazine {
    background: #fff0f6;
    color: #ed1974;
}

.feature-icon.download {
    background: #eef5ff;
    color: #3976d5;
}

.feature-icon.bookmark {
    background: #fff8e9;
    color: #d58a17;
}

.feature-icon.heart {
    background: #fff0f0;
    color: #e74b4b;
}

.feature-icon.comment {
    background: #edf9f1;
    color: #3a9a5b;
}

.feature-icon.history {
    background: #f2efff;
    color: #7656ce;
}

.arrow {
    margin-left: auto;

    color: #a3a7b2;

    font-size: 13px;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    padding: 20px 0;

    background: #101b2c;
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;

    color: #aeb5c1;

    font-size: 16px;
}

.footer-bottom a {
    color: #ffffff;

    font-size: 16px;
}

.footer-bottom a:hover {
    color: #ed1974;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .account-layout {
        grid-template-columns: 220px 1fr;
    }

    .account-menu-item {
        font-size: 16px;
    }

    .subscription-status {
        grid-template-columns: 1fr;
    }

    .subscription-info {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .account-section {
        padding: 25px 0 45px;
    }

    .account-welcome {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;

        padding: 20px;
    }

    .edit-profile-btn {
        width: 100%;
        justify-content: center;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        padding: 15px;
    }

    .account-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .logout-btn {
        margin-top: 15px;
    }

    .profile-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .subscription-status {
        padding: 18px;
    }

    .subscription-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .subscription-info div {
        padding: 10px 0 0;

        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .account-feature-grid {
        grid-template-columns: 1fr;
    }

    .account-header-title {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .welcome-user {
        align-items: flex-start;
    }

    .profile-avatar {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .welcome-user h1 {
        font-size: 23px;
    }

    .account-menu {
        grid-template-columns: 1fr;
    }

    .account-card {
        padding: 18px;
    }

    .card-title h2 {
        font-size: 18px;
    }

    .subscription-price {
        font-size: 27px;
    }
}

/* ==========================================
   ACCOUNT TABS
========================================== */

.account-menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    padding: 10px;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;

    animation: tabFade 0.3s ease;
}

@keyframes tabFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================
   EMPTY STATE
========================================== */

.empty-state {
    padding: 55px 20px;

    text-align: center;
}

.empty-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f6;
    color: #ed1974;

    font-size: 25px;
}

.empty-state h3 {
    margin: 0 0 8px;

    color: #252b3a;

    font-size: 20px;
}

.empty-state p {
    margin: 0 0 20px;

    color: #888d99;

    font-size: 16px;
}

.empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 7px;

    background: #ed1974;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}


/* ==========================================
   DOWNLOAD HISTORY
========================================== */

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    padding: 15px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid #e7e8ed;
    border-radius: 9px;
}

.history-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: #fff0f0;
    color: #e74b4b;

    font-size: 18px;
}

.history-item div:nth-child(2) {
    flex: 1;
}

.history-item strong {
    display: block;

    margin-bottom: 5px;

    color: #252b3a;

    font-size: 16px;
}

.history-item span {
    color: #888d99;

    font-size: 16px;
}

/* ==========================================
   TABLE
========================================== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.account-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 16px;
}

.account-table th {
    padding: 14px;

    background: #f7f8fb;

    color: #555b69;

    text-align: left;

    font-weight: 700;
}

.account-table td {
    padding: 15px 14px;

    color: #333947;

    border-bottom: 1px solid #eeeeef;
}

.paid-status {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 20px;

    background: #eaf9ef;
    color: #28934e;

    font-size: 16px;
    font-weight: 600;
}


/* ==========================================
   SAVED ARTICLE
========================================== */

.saved-article {
    display: flex;
    gap: 18px;

    padding: 15px;

    border: 1px solid #e7e8ed;
    border-radius: 10px;
}

.article-image {
    width: 150px;
    height: 100px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.article-content {
    flex: 1;
}

.article-content > span {
    color: #ed1974;

    font-size: 16px;
}

.article-content h3 {
    margin: 5px 0;

    color: #252b3a;

    font-size: 19px;
}

.article-content p {
    margin: 0 0 8px;

    color: #888d99;

    font-size: 16px;
}

.article-content a {
    color: #ed1974;

    font-size: 16px;
    font-weight: 600;
}


/* ==========================================
   COMMENTS
========================================== */

.comment-item {
    display: flex;
    gap: 14px;

    padding: 18px;

    background: #f8f9fc;

    border-radius: 10px;
}

.comment-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ed1974;
    color: #ffffff;

    font-size: 17px;
}

.comment-content strong {
    display: block;

    color: #252b3a;

    font-size: 16px;
}

.comment-content span {
    display: block;

    margin: 3px 0 8px;

    color: #888d99;

    font-size: 16px;
}

.comment-content p {
    margin: 0;

    color: #555b69;

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================
   LIKED ARTICLE
========================================== */

.liked-article {
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    border: 1px solid #eeeeef;
    border-radius: 10px;
}

.liked-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fff0f0;
    color: #e74b4b;

    font-size: 19px;
}

.liked-article > div:nth-child(2) {
    flex: 1;
}

.liked-article h3 {
    margin: 0 0 5px;

    color: #252b3a;

    font-size: 18px;
}

.liked-article p {
    margin: 0;

    color: #888d99;

    font-size: 16px;
}

.liked-article > a {
    color: #ed1974;

    font-size: 16px;
    font-weight: 600;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .history-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .history-item .download-btn {
        width: 100%;
        justify-content: center;

        padding-top: 10px;

        border-top: 1px solid #eeeeef;
    }

    .saved-article {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
        height: 180px;
    }

    .liked-article {
        align-items: flex-start;
    }

    .liked-article > a {
        margin-left: auto;
    }

}

@media (max-width: 480px) {

    .liked-article {
        flex-wrap: wrap;
    }

    .liked-article > a {
        width: 100%;

        padding-top: 10px;

        border-top: 1px solid #eeeeef;
    }

}

/* =========================================
   EDIT PROFILE
========================================= */

.edit-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
    margin-top: 28px;
}

.edit-form-group {
    width: 100%;
}

.edit-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

.edit-input {
    position: relative;
}

.edit-input > svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3b2;
    font-size: 15px;
    z-index: 2;
}

.edit-input input,
.edit-input select {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 43px;
    border: 1px solid #e1e5eb;
    border-radius: 9px;
    background: #f8f9fc;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.edit-input input:focus,
.edit-input select:focus {
    border-color: #ed1767;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(237, 23, 103, 0.08);
}

.edit-input input:hover,
.edit-input select:hover {
    background: #fff;
    border-color: #d4d9e1;
}

.edit-input select {
    appearance: none;
    cursor: pointer;
}


/* Bottom Buttons */

.edit-profile-actions {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e9ebef;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.edit-cancel-btn,
.edit-save-btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.edit-cancel-btn {
    background: #fff;
    color: #596579;
    border: 1px solid #dfe3e9;
}

.edit-cancel-btn:hover {
    background: #f7f8fa;
}

.edit-save-btn {
    background: #ed1767;
    color: #fff;
    border: 1px solid #ed1767;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    box-shadow: 0 5px 14px rgba(237, 23, 103, 0.18);
}

.edit-save-btn:hover {
    background: #d90f5b;
    border-color: #d90f5b;
    transform: translateY(-1px);
}


/* Edit Profile Button */

.edit-profile-btn {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}


/* Mobile */

@media (max-width: 767px) {

    .edit-profile-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .edit-profile-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .edit-cancel-btn,
    .edit-save-btn {
        width: 100%;
    }

}

.article-page {
    padding: 45px 0 90px;
}


/* =========================================
   BREADCRUMB
========================================= */

.article-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    font-size: 14px;
    color: var(--muted);
}

.article-breadcrumb a {
    color: #e6187c;
    font-weight: 600;
}

.article-breadcrumb i {
    font-size: 16px;
}


/* =========================================
   ARTICLE HEADER
========================================= */

.article-header {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    position: relative;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 50px;
    background: #f5e7df;
    color: #e6187c;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.article-header h1 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.8px;
    color: #252525;
    margin-bottom: 20px;
}

.article-excerpt {
    max-width: 780px;
    margin: auto;
    color: var(--text);
    font-size: 18px;
}


/* =========================================
   AUTHOR
========================================= */

.article-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    margin-top: 28px;
    margin-bottom: 45px;
}

.author-profile {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0d6c8;
}

.author-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info > span {
    font-size: 16px;
    color: var(--muted);
}

.author-info h3 {
    font-size: 16px;
    margin: 1px 0;
}

.article-meta {
    display: flex;
    gap: 15px;
    color: var(--muted);
    font-size: 16px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* =========================================
   FEATURED IMAGE
========================================= */

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 55px;
}

.featured-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, .65);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 16px;
}


/* =========================================
   ARTICLE LAYOUT
========================================= */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 55px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-content p {
    color: #505050;
    font-size: 17px;
    margin-bottom: 22px;
}

.article-content .lead {
    font-size: 21px;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

.article-content h2 {
    font-family: Georgia, serif;
    font-size: 30px;
    margin: 42px 0 18px;
    color: #292929;
    position: relative;
}

.article-content h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: var(--secondary);
    margin-top: 10px;
}


/* =========================================
   BLOCKQUOTE
========================================= */

blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    background: var(--light);
    border-left: 5px solid #e6187c;
    font-family: Georgia, serif;
    font-size: 23px;
    line-height: 1.5;
    color: #333;
    border-radius: 0 12px 12px 0;
}


/* =========================================
   SHARE
========================================= */

.share-mobile {
    display: none;
}

.share-buttons {
    display: flex;
    gap: 9px;
}

.share-buttons a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f2eee9;
    color: #333;
    transition: .3s ease;
}

.share-buttons a:hover {
    background: #e6187c;
    color: white;
    transform: translateY(-3px);
}


/* =========================================
   TAGS
========================================= */

.article-tags {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    margin-top: 45px;
}

.article-tags h3 {
    font-size: 15px;
    margin-bottom: 14px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tags-list a {
    border: 1px solid var(--border);
    padding: 7px 15px;
    border-radius: 30px;
    background: white;
    color: #666;
    font-size: 13px;
    transition: .3s;
}

.tags-list a:hover {
    background: #e6187c;
    color: white;
    border-color: #e6187c;
}


/* =========================================
   RELATED MAGAZINE
========================================= */

.related-magazine {
    display: flex;
    gap: 25px;
    padding: 25px;
    margin-top: 40px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f7eee7, #fff);
    border: 1px solid #eadbd0;
}

.magazine-cover {
    width: 145px;
    flex-shrink: 0;
}

.magazine-cover img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.magazine-info {
    padding: 8px 0;
}

.small-label {
    color: #e6187c;
    font-size: 16px;
    font-weight: 700;
}

.magazine-info h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    margin: 5px 0 8px;
}

.magazine-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.read-magazine,
.author-details a,
.sidebar-magazine a {
    color: #e6187c;
    font-weight: 700;
    font-size: 14px;
}


/* =========================================
   AUTHOR BOX
========================================= */

.author-box {
    display: flex;
    gap: 22px;
    margin-top: 45px;
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.author-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details > span {
    font-size: 16px;
    color: #e6187c;
    font-weight: 700;
}

.author-details h3 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin: 2px 0 5px;
}

.author-details p {
    font-size: 14px;
    margin-bottom: 8px;
}


/* =========================================
   PREVIOUS NEXT
========================================= */

.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 45px;
}

.nav-card {
    padding: 22px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 14px;
    transition: .3s;
}

.nav-card:hover {
    border-color: #e6187c;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.nav-card span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e6187c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.nav-card.next span {
    justify-content: flex-end;
}

.nav-card h3 {
    font-family: Georgia, serif;
    font-size: 17px;
    line-height: 1.4;
}

.nav-card.next {
    text-align: right;
}


/* =========================================
   SIDEBAR
========================================= */

.article-sidebar {
    position: sticky;
    top: 25px;
}

.sidebar-card {
    padding: 25px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 22px;
    box-shadow: 0 8px 30px rgba(30, 20, 10, .04);
}

.sidebar-card h3 {
    font-family: Georgia, serif;
    font-size: 23px;
    margin-bottom: 8px;
}

.share-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}


/* =========================================
   SIDEBAR TITLE
========================================= */

.sidebar-title span {
    font-size: 15px;
    color: #e6187c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-title h3 {
    margin-top: 2px;
}


/* =========================================
   RELATED ARTICLES
========================================= */

.related-article {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.related-article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.related-article img {
    width: 85px;
    height: 70px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
}

.related-article span {
    font-size: 16px;
    color: #e6187c;
    font-weight: 700;
}

.related-article h4 {
    font-family: Georgia, serif;
    font-size: 14px;
    line-height: 1.35;
    margin: 2px 0;
}

.related-article small {
    color: var(--muted);
    font-size: 16px;
}


/* =========================================
   SIDEBAR MAGAZINE
========================================= */

.sidebar-magazine {
    padding: 30px;
    border-radius: 10px;
    background: #180c12;
    color: white;
    text-align: center;
}

.sidebar-magazine > span {
    font-size: 15px;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-magazine h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    margin: 4px 0 18px;
}

.sidebar-magazine img {
    width: 170px;
    height: 220px;
    object-fit: cover;
    margin: auto;
    border-radius: 7px;
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.sidebar-magazine a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    margin-top: 20px;
    justify-content: center;
    font-size: 18px;
}

/* =========================================
   COMMENTS
========================================= */
/* =========================================
   ARTICLE COMMENTS SECTION
========================================= */

.article-comments-sections {
    margin-top: 65px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}


/* =========================================
   COMMENTS HEADING
========================================= */

.article-comments-heading {
    margin-bottom: 30px;
}

.article-comments-heading > span {
    display: block;
    color: #e6187c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 5px;
}

.article-comments-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.article-comments-heading-row h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.2;
    color: var(--dark);
}


/* =========================================
   COMMENT COUNT
========================================= */

.article-comment-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 30px;
    background: #f5eee9;
    color: #e6187c;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.article-comment-count i {
    font-size: 13px;
}


/* =========================================
   COMMENT FORM
========================================= */

.article-comment-form {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(30, 20, 10, 0.03);
}

.article-comment-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.article-comment-form-label {
    display: block;
    color: #e6187c;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-comment-form-header h3 {
    margin: 4px 0 0;
    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1.3;
    color: var(--dark);
}


/* =========================================
   LOGIN NOTE
========================================= */

.article-comment-login-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 30px;
    background: #f7f7f7;
    color: #777;
    font-size: 15px;
    white-space: nowrap;
}


/* =========================================
   FORM ROW
========================================= */

.article-comment-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.article-comment-form-group {
    margin-bottom: 18px;
}

.article-comment-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.article-comment-form-group input,
.article-comment-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fcfbfa;
    color: #333;
    border-radius: 10px;
    padding: 13px 15px;
    outline: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.article-comment-form-group input {
    height: 48px;
}

.article-comment-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.article-comment-form-group input::placeholder,
.article-comment-form-group textarea::placeholder {
    color: #aaa;
}

.article-comment-form-group input:focus,
.article-comment-form-group textarea:focus {
    border-color: #e6187c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(157, 53, 31, 0.06);
}


/* =========================================
   SPAM PROTECTION
========================================= */

.article-comment-spam-protection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 15px;
    margin-bottom: 20px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    background: #fafafa;
}

.article-comment-spam-checkbox {
    display: flex;
    align-items: center;
    gap: 9px;
}

.article-comment-spam-checkbox input {
    width: 17px;
    height: 17px;
    accent-color: #e6187c;
    cursor: pointer;
}

.article-comment-spam-checkbox label {
    color: #555;
    font-size: 13px;
    cursor: pointer;
}

.article-comment-spam-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #628269;
    font-size: 15px;
    font-weight: 600;
}

.article-comment-spam-info i {
    font-size: 13px;
}


/* =========================================
   SUBMIT ROW
========================================= */

.article-comment-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.article-comment-submit-row p {
    margin: 0;
    color: #888;
    font-size: 15px;
    line-height: 1.5;
}

.article-comment-submit-row p i {
    color: #e6187c;
    margin-right: 4px;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.article-comment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 8px;
    background: #e6187c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.article-comment-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 53, 31, 0.18);
}

.article-comment-submit i {
    font-size: 16px;
}


/* =========================================
   COMMENTS LIST
========================================= */

.article-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================
   MAIN COMMENT ITEM
========================================= */

.article-comment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.article-comment-item:hover {
    border-color: #ddd5cf;
    box-shadow: 0 8px 25px rgba(30, 20, 10, 0.04);
}


/* =========================================
   COMMENT AVATAR
========================================= */

.article-comment-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    border-radius: 50%;
    background: #eeeeee;
    border: 1px solid #eee;
}

.article-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   COMMENT BODY
========================================= */

.article-comment-body {
    flex: 1;
    min-width: 0;
}


/* =========================================
   COMMENT TOP
========================================= */

.article-comment-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.article-comment-top h4 {
    margin: 0 0 2px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.article-comment-date {
    color: #999;
    font-size: 15px;
    line-height: 1.4;
}


/* =========================================
   COMMENT TEXT
========================================= */

.article-comment-text {
    margin: 9px 0 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   COMMENT ACTIONS
========================================= */

.article-comment-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.article-comment-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.article-comment-action span {
    margin-left: 2px;
    color: #aaa;
}

.article-comment-action:hover {
    background: #f6f2ef;
    color: #e6187c;
}

.article-comment-action:hover i {
    color: #e6187c;
}


/* =========================================
   REPORT BUTTON
========================================= */

.article-comment-report:hover {
    background: #fff1ef;
    color: #c0392b;
}

.article-comment-report:hover i {
    color: #c0392b;
}


/* =========================================
   APPROVED BADGE
========================================= */

.article-comment-approved {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #e9f6ec;
    color: #3d7c4b;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.article-comment-approved i {
    font-size: 9px;
}


/* =========================================
   REPLY LABEL
========================================= */

.article-comment-reply-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #f4eee9;
    color: #e6187c;
    font-size: 9px;
    font-weight: 700;
}

.article-comment-reply-label i {
    font-size: 9px;
}


/* =========================================
   AUTHOR BADGE
========================================= */

.article-comment-author {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #f5e4c8;
    color: #9b671c;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.article-comment-author i {
    font-size: 9px;
}


/* =========================================
   REPLIES
========================================= */

.article-comment-replies {
    margin-top: 18px;
    padding-left: 28px;
    border-left: 2px solid #eee4dd;
}

.article-comment-replies > .article-comment-item {
    background: #fcfbfa;
    padding: 18px;
}


/* =========================================
   NESTED REPLY
========================================= */

.article-comment-nested-reply {
    margin-top: 15px;
    padding-left: 25px;
    border-left: 2px solid #eee4dd;
}

.article-comment-nested-reply > .article-comment-item {
    background: #ffffff;
    padding: 16px;
}


/* =========================================
   MODERATION MESSAGE
========================================= */

.article-comment-moderation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    margin-top: 5px;
    background: #f7f5ef;
    border: 1px solid #ebe5d8;
    border-radius: 12px;
}

.article-comment-moderation-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: #e6187c;
}

.article-comment-moderation h4 {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 13px;
}

.article-comment-moderation p {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 767px) {

    .article-comments-sections {
        margin-top: 50px;
        padding-top: 40px;
    }

    .article-comments-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-comments-heading-row h2 {
        font-size: 30px;
    }

    .article-comment-form {
        padding: 20px;
    }

    .article-comment-form-header {
        flex-direction: column;
        gap: 12px;
    }

    .article-comment-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-comment-spam-protection {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-comment-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-comment-submit {
        width: 100%;
    }

    .article-comment-item {
        padding: 17px;
        gap: 11px;
    }

    .article-comment-avatar {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .article-comment-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .article-comment-replies {
        padding-left: 15px;
    }

    .article-comment-nested-reply {
        padding-left: 12px;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 480px) {

    .article-comments-heading-row h2 {
        font-size: 27px;
    }

    .article-comment-count {
        font-size: 15px;
        padding: 6px 11px;
    }

    .article-comment-form {
        padding: 17px;
    }

    .article-comment-item {
        display: block;
        padding: 16px;
    }

    .article-comment-avatar {
        margin-bottom: 10px;
    }

    .article-comment-actions {
        gap: 2px;
    }

    .article-comment-action {
        padding: 5px 6px;
        font-size: 16px;
    }

    .article-comment-replies {
        margin-top: 15px;
        padding-left: 9px;
    }

    .article-comment-nested-reply {
        padding-left: 7px;
    }

    .article-comment-moderation {
        align-items: flex-start;
        padding: 15px;
    }
}
.submit-comment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: 8px;
    background: #e6187c;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.submit-comment:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sidebar-card,
    .sidebar-magazine {
        margin-bottom: 0;
    }

    .sidebar-magazine {
        grid-column: span 2;
    }

    .featured-image img {
        height: 450px;
    }
}


@media (max-width: 767px) {

    .container {
        width: min(100% - 28px, 1240px);
    }

    .article-page {
        padding: 25px 0 60px;
    }

    .article-header h1 {
        font-size: 36px;
    }

    .article-excerpt {
        font-size: 15px;
    }

    .article-author {
        margin-bottom: 30px;
    }

    .featured-image {
        border-radius: 15px;
        margin-bottom: 35px;
    }

    .featured-image img {
        height: 300px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-content .lead {
        font-size: 18px;
    }

    .article-content h2 {
        font-size: 25px;
    }

    blockquote {
        font-size: 19px;
        padding: 20px;
    }

    .share-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 15px 0;
        margin-bottom: 20px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .share-mobile > span {
        font-size: 13px;
        font-weight: 700;
    }

    .share-mobile .share-buttons {
        gap: 5px;
    }

    .share-mobile .share-buttons a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .article-sidebar {
        display: block;
    }

    .sidebar-card,
    .sidebar-magazine {
        margin-bottom: 20px;
    }

    .sidebar-magazine {
        display: block;
    }

    .related-magazine {
        flex-direction: column;
    }

    .magazine-cover {
        width: 120px;
    }

    .magazine-cover img {
        height: 160px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .nav-card.next {
        text-align: left;
    }

    .nav-card.next span {
        justify-content: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comment-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }
}


@media (max-width: 480px) {

    .article-header h1 {
        font-size: 30px;
    }

    .article-meta {
        flex-direction: column;
        gap: 2px;
    }

    .featured-image img {
        height: 240px;
    }

    .image-caption {
        left: 10px;
        bottom: 10px;
        font-size: 16px;
    }

    .related-magazine,
    .author-box,
    .comment-form {
        padding: 20px;
    }

    .article-navigation {
        gap: 10px;
    }
}

/* =========================================
   ARTICLE SHARE
========================================= */

.article-share {
    position: relative;
    display: inline-flex;
    align-items: center;
}


/* =========================================
   SHARE BUTTON
========================================= */

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn:hover {
    background: #e6187c;
    border-color: #e6187c;
    color: #fff;
}


/* =========================================
   SHARE OPTIONS
========================================= */

.share-options {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 190px;

    padding: 8px;

    background: #fff;

    border: 1px solid #e8e3df;
    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px) scale(.97);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index: 100;
}


/* Small Arrow */

.share-options::before {
    content: "";

    position: absolute;

    top: -6px;
    right: 18px;

    width: 11px;
    height: 11px;

    background: #fff;

    border-left: 1px solid #e8e3df;
    border-top: 1px solid #e8e3df;

    transform: rotate(45deg);
}


/* =========================================
   SHOW ON HOVER
========================================= */

.article-share:hover .share-options {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
}


/* =========================================
   SHARE OPTION
========================================= */

.share-option {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px 11px;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: #555;

    font-size: 13px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: all .2s ease;
}

.share-option i {
    width: 20px;

    display: inline-flex;
    justify-content: center;

    font-size: 16px;
}


/* =========================================
   OPTION HOVER
========================================= */

.share-option:hover {
    background: #f6f3f0;
    color: #e6187c;

    transform: translateX(3px);
}


/* =========================================
   BRAND COLORS
========================================= */

.share-option.whatsapp:hover {
    color: #25D366;
    background: #eefbf3;
}

.share-option.facebook:hover {
    color: #1877F2;
    background: #eef4ff;
}

.share-option.x-twitter:hover {
    color: #000;
    background: #f3f3f3;
}

.share-option.linkedin:hover {
    color: #0A66C2;
    background: #eef5ff;
}

.share-option.telegram:hover {
    color: #229ED9;
    background: #eef9fd;
}

.share-option.email:hover {
    color: #c0392b;
    background: #fff3f1;
}

.share-option.copy-link:hover {
    color: #e6187c;
    background: #f8f0eb;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .share-options {
        right: 0;
        width: 175px;
    }

    .share-option {
        padding: 9px 10px;
        font-size: 16px;
    }
}

/* ========================================= ABOUT SWAR SARITA ========================================= */
.about-swar-sarita { padding: 90px 0; background: #faf8f5; overflow: hidden; } .about-swar-sarita .container { width:
min(1180px, calc(100% - 40px)); margin: auto; } /* ========================================= WRAPPER
========================================= */ .about-swar-wrapper { display: grid; grid-template-columns: 1.05fr .95fr;
align-items: center; gap: 75px; } /* ========================================= CONTENT
========================================= */ .about-swar-content { position: relative; } .about-swar-label { display:
inline-flex; align-items: center; gap: 8px; color: #e6187c; font-size: 16px; font-weight: 800; text-transform:
uppercase; letter-spacing: 2px; margin-bottom: 12px; } .about-swar-label::before { content: ""; width: 28px; height:
2px; background: #d49a3a; } .about-swar-content h2 { margin: 0 0 20px; color: #252525; font-family: Georgia, "Times New
Roman", serif; font-size: clamp(35px, 4vw, 52px); line-height: 1.15; } .about-swar-content p { max-width: 650px; margin:
0 0 15px; color: #666; font-size: 16px; line-height: 1.85; } /* ========================================= LINKS
========================================= */ .about-swar-links { display: flex; flex-direction: column; gap: 12px;
margin-top: 30px; } .about-swar-link { display: flex; align-items: center; gap: 14px; padding: 15px 18px; background:
#fff; border: 1px solid #e8e1db; border-radius: 12px; color: #333; transition: all .3s ease; } .about-swar-link:hover {
border-color: #e6187c; transform: translateX(6px); box-shadow: 0 12px 30px rgba(50, 30, 15, .08); } /*
========================================= LINK ICON ========================================= */ .about-swar-link-icon {
width: 45px; height: 45px; flex: 0 0 45px; display: flex; align-items: center; justify-content: center; border-radius:
10px; background: #f7ebe5; color: #e6187c; font-size: 17px; transition: all .3s ease; } .about-swar-link:hover
.about-swar-link-icon { background: #e6187c; color: #fff; } /* ========================================= LINK CONTENT
========================================= */ .about-swar-link-content { flex: 1; display: flex; flex-direction: column;
} .about-swar-link-content strong { font-size: 15px; font-weight: 800; line-height: 1.4; } .about-swar-link-content
small { margin-top: 2px; color: #999; font-size: 15px; } /* ========================================= ARROW
========================================= */ .about-swar-link > .fa-arrow-right { color: #aaa; font-size: 13px;
transition: all .3s ease; } .about-swar-link:hover > .fa-arrow-right { color: #e6187c; transform: translateX(4px); } /*
========================================= VISUAL ========================================= */ .about-swar-visual {
position: relative; padding: 20px; } .about-swar-image { position: relative; overflow: hidden; height: 520px;
border-radius: 25px; box-shadow: 0 25px 60px rgba(40, 25, 10, .15); } .about-swar-image::after { content: ""; position:
absolute; inset: 0; background: linear-gradient( 180deg, transparent 50%, rgba(0, 0, 0, .35) ); } .about-swar-image img
{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; } .about-swar-visual:hover
.about-swar-image img { transform: scale(1.04); } /* ========================================= FLOATING CARD
========================================= */ .about-swar-experience { position: absolute; left: -5px; bottom: 0;
display: flex; flex-direction: column; min-width: 210px; padding: 20px 24px; background: #e6187c; color: #fff;
border-radius: 15px; box-shadow: 0 15px 35px rgba(70, 30, 15, .25); } .about-swar-experience strong { font-family:
Georgia, serif; font-size: 35px; line-height: 1; } .about-swar-experience span { margin-top: 8px; font-size: 15px;
opacity: .9; } /* ========================================= TABLET ========================================= */ @media
(max-width: 991px) { .about-swar-sarita { padding: 70px 0; } .about-swar-wrapper { grid-template-columns: 1fr; gap:
45px; } .about-swar-content { max-width: 750px; } .about-swar-visual { max-width: 650px; width: 100%; margin: auto; } }
/* ========================================= MOBILE ========================================= */ @media (max-width:
575px) { .about-swar-sarita { padding: 55px 0; } .about-swar-sarita .container { width: min(100% - 28px, 1180px); }
.about-swar-content h2 { font-size: 34px; } .about-swar-content p { font-size: 14px; line-height: 1.75; }
.about-swar-link { padding: 13px; gap: 11px; } .about-swar-link-icon { width: 40px; height: 40px; flex-basis: 40px;
font-size: 15px; } .about-swar-link-content strong { font-size: 14px; } .about-swar-link-content small { font-size:
10px; } .about-swar-visual { padding: 10px; } .about-swar-image { height: 380px; border-radius: 18px; }
.about-swar-experience { left: 0; bottom: -5px; min-width: 175px; padding: 16px 18px; } .about-swar-experience strong {
font-size: 28px; } .about-swar-experience span { font-size: 9px; } }

/* ========================================= EDITORIAL TEAM PAGE ========================================= */
.editorial-team-page { padding: 40px 0 90px; background: #faf9f7; } .editorial-team-page .container { width: min(1200px,
calc(100% - 40px)); margin: auto; } /* ========================================= BREADCRUMB
========================================= */ .editorial-breadcrumb { display: flex; align-items: center; flex-wrap:
wrap; gap: 10px; margin-bottom: 35px; color: #999; font-size: 13px; } .editorial-breadcrumb a { color: #e6187c;
font-weight: 600; } .editorial-breadcrumb i { font-size: 9px; color: #bbb; } /*
========================================= HERO ========================================= */ .editorial-hero { position:
relative; overflow: hidden; padding: 75px 60px; border-radius: 25px; background: linear-gradient(135deg, #9d2158, #36081e); color: #fff; margin-bottom: 80px; } .editorial-hero::before { content: ""; position: absolute; width: 350px;
height: 350px; right: -100px; top: -160px; border: 60px solid rgba(255,255,255,.06); border-radius: 50%; }
.editorial-hero::after { content: ""; position: absolute; width: 250px; height: 250px; right: 120px; bottom: -180px;
border: 50px solid rgba(255,255,255,.05); border-radius: 50%; } .editorial-hero-content { position: relative; z-index:
2; max-width: 760px; } .editorial-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px;
color: #f5d9bd; font-size: 15px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; } .editorial-hero
h1 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(42px, 6vw, 70px); line-height: 1; } .editorial-hero
p { max-width: 700px; margin: 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.8; } /*
========================================= INTRO ========================================= */ .editorial-intro { display:
grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; margin-bottom: 65px; } .editorial-intro-heading
span, .editorial-section-heading span, .editorial-values-heading span { display: block; color: #e6187c; font-size: 15px;
font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; } .editorial-intro-heading h2,
.editorial-section-heading h2, .editorial-values-heading h2 { margin: 0; color: #282828; font-family: Georgia, serif;
font-size: 40px; line-height: 1.2; } .editorial-intro > p { margin: 0; color: #666; font-size: 16px; line-height: 1.9; }
/* ========================================= FEATURED EDITOR ========================================= */
.featured-editor { display: grid; grid-template-columns: 420px 1fr; gap: 55px; align-items: center; padding: 35px;
margin-bottom: 90px; background: #fff; border: 1px solid #e8e1db; border-radius: 24px; box-shadow: 0 15px 45px rgba(40,
25, 10, .06); } .featured-editor-image { position: relative; height: 450px; overflow: hidden; border-radius: 18px; }
.featured-editor-image img { width: 100%; height: 100%; object-fit: cover; } .featured-editor-badge { position:
absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; background:
#e6187c; color: #fff; border-radius: 7px; font-size: 15px; font-weight: 700; } .featured-editor-content .editor-role {
color: #e6187c; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.featured-editor-content h2 { margin: 7px 0 17px; font-family: Georgia, serif; font-size: 42px; line-height: 1.2; }
.featured-editor-content p { margin: 0 0 15px; color: #666; font-size: 15px; line-height: 1.8; } .editor-bio {
font-weight: 600; } .editor-social { display: flex; gap: 8px; margin-top: 25px; } .editor-social a { width: 38px;
height: 38px; display: flex; align-items: center; justify-content: center; background: #f6f1ed; color: #555;
border-radius: 50%; transition: .3s; } .editor-social a:hover { background: #e6187c; color: #fff; transform:
translateY(-3px); } /* ========================================= TEAM SECTION =========================================
*/ .editorial-members { margin-bottom: 90px; } .editorial-section-heading { display: flex; align-items: flex-end;
justify-content: space-between; gap: 30px; margin-bottom: 35px; } .editorial-section-heading > p { max-width: 390px;
margin: 0; color: #777; font-size: 14px; line-height: 1.7; } /* ========================================= TEAM GRID
========================================= */ .editorial-team-grid { display: grid; grid-template-columns: repeat(3,
1fr); gap: 24px; } /* ========================================= TEAM CARD ========================================= */
.editorial-member-card { overflow: hidden; background: #fff; border: 1px solid #e8e1db; border-radius: 16px; transition:
all .35s ease; } .editorial-member-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(40, 25, 10,
.1); border-color: #d8c6ba; } .editorial-member-image { position: relative; height: 310px; overflow: hidden; background:
#eee; } .editorial-member-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.editorial-member-card:hover .editorial-member-image img { transform: scale(1.05); } /*
========================================= MEMBER SOCIAL ========================================= */
.editorial-member-social { position: absolute; right: 15px; bottom: 15px; display: flex; gap: 5px; opacity: 0;
transform: translateY(10px); transition: .3s; } .editorial-member-card:hover .editorial-member-social { opacity: 1;
transform: translateY(0); } .editorial-member-social a { width: 34px; height: 34px; display: flex; justify-content:
center; align-items: center; background: #fff; color: #555; border-radius: 50%; font-size: 16px; transition: .25s; }
.editorial-member-social a:hover { background: #e6187c; color: #fff; } /* =========================================
MEMBER CONTENT ========================================= */ .editorial-member-content { padding: 20px; }
.editorial-member-content span { color: #e6187c; font-size: 16px; font-weight: 800; letter-spacing: 1px; text-transform:
uppercase; } .editorial-member-content h3 { margin: 4px 0 3px; font-family: Georgia, serif; font-size: 23px; }
.editorial-member-content p { margin: 0; color: #999; font-size: 16px; } /* =========================================
EDITORIAL VALUES ========================================= */ .editorial-values { padding: 70px 0; margin-bottom: 60px;
border-top: 1px solid #e8e1db; border-bottom: 1px solid #e8e1db; } .editorial-values-heading { max-width: 650px;
margin-bottom: 35px; } .editorial-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.editorial-value-card { padding: 28px; background: #fff; border: 1px solid #e8e1db; border-radius: 15px; }
.editorial-value-icon { width: 48px; height: 48px; display: flex; justify-content: center; align-items: center;
margin-bottom: 18px; border-radius: 12px; background: #f6e9e2; color: #e6187c; } .editorial-value-card h3 {
margin-bottom: 8px; font-family: Georgia, serif; font-size: 21px; } .editorial-value-card p { margin: 0; color: #777;
font-size: 13px; line-height: 1.7; } /* ========================================= CONTACT CTA
========================================= */ .editorial-contact-cta { display: flex; align-items: center;
justify-content: space-between; gap: 30px; padding: 40px 45px; border-radius: 20px; background: #f3e8df; }
.editorial-contact-cta > div { max-width: 720px; } .editorial-contact-cta span { color: #e6187c; font-size: 15px;
font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; } .editorial-contact-cta h2 { margin: 5px 0 8px;
font-family: Georgia, serif; font-size: 32px; } .editorial-contact-cta p { margin: 0; color: #777; font-size: 14px; }
.editorial-contact-btn { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; padding: 13px 22px;
border-radius: 8px; background: #e6187c; color: #fff; font-size: 16px; font-weight: 700; transition: .3s; }
.editorial-contact-btn:hover { background: #590b31; transform: translateY(-2px); } /*
========================================= TABLET ========================================= */ @media (max-width: 991px)
{ .editorial-hero { padding: 60px 40px; } .editorial-intro { grid-template-columns: 1fr; gap: 20px; } .featured-editor {
grid-template-columns: 1fr; gap: 35px; } .featured-editor-image { height: 500px; } .editorial-team-grid {
grid-template-columns: repeat(2, 1fr); } .editorial-values-grid { grid-template-columns: 1fr 1fr; } } /*
========================================= MOBILE ========================================= */ @media (max-width: 767px)
{ .editorial-team-page { padding: 25px 0 60px; } .editorial-team-page .container { width: min(100% - 28px, 1200px); }
.editorial-hero { padding: 45px 25px; border-radius: 18px; margin-bottom: 55px; } .editorial-hero h1 { font-size: 43px;
} .editorial-hero p { font-size: 14px; } .editorial-intro-heading h2, .editorial-section-heading h2,
.editorial-values-heading h2 { font-size: 32px; } .featured-editor { padding: 18px; border-radius: 18px; margin-bottom:
60px; } .featured-editor-image { height: 380px; } .featured-editor-content h2 { font-size: 34px; }
.editorial-section-heading { align-items: flex-start; flex-direction: column; gap: 15px; } .editorial-team-grid {
grid-template-columns: 1fr; } .editorial-member-image { height: 360px; } .editorial-values-grid { grid-template-columns:
1fr; } .editorial-contact-cta { align-items: flex-start; flex-direction: column; padding: 30px 25px; }
.editorial-contact-cta h2 { font-size: 27px; } .editorial-contact-btn { width: 100%; justify-content: center; } } /*
========================================= SMALL MOBILE ========================================= */ @media (max-width:
480px) { .editorial-breadcrumb { font-size: 15px; gap: 7px; } .editorial-hero h1 { font-size: 36px; }
.featured-editor-image { height: 330px; } .editorial-member-image { height: 320px; } .editorial-member-content {
padding: 17px; } .editorial-values { padding: 50px 0; } }

/* =========================================
   CONTACT PAGE
========================================= */

.article-contact-page {
    padding: 40px 0 90px;
    background: #faf9f7;
}

.article-contact-page .container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}


/* =========================================
   BREADCRUMB
========================================= */

.article-contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    color: #999;
    font-size: 13px;
}

.article-contact-breadcrumb a {
    color: #e6187c;
    font-weight: 600;
}

.article-contact-breadcrumb i {
    color: #bbb;
    font-size: 9px;
}


/* =========================================
   HERO
========================================= */

.article-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 75px 60px;
    margin-bottom: 70px;
    border-radius: 25px;
    background: linear-gradient(135deg, #9d2158, #36081e);
    color: #fff;
}

.article-contact-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -230px;
    right: -80px;
    border: 70px solid rgba(255,255,255,.06);
    border-radius: 50%;
}

.article-contact-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -160px;
    right: 220px;
    border: 50px solid rgba(255,255,255,.05);
    border-radius: 50%;
}

.article-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.article-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #f5d9bd;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-contact-hero h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1;
}

.article-contact-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN CONTENT
========================================= */

.article-contact-content {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px;
    align-items: start;
    margin-bottom: 65px;
}


/* =========================================
   CONTACT INFO
========================================= */

.article-contact-info {
    padding-top: 8px;
}

.article-contact-section-label {
    display: block;
    margin-bottom: 8px;
    color: #e6187c;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-contact-info h2 {
    margin: 0 0 15px;
    color: #282828;
    font-family: Georgia, serif;
    font-size: 40px;
}

.article-contact-info-intro {
    margin: 0 0 30px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   INFO CARD
========================================= */

.article-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #e8e1db;
}

.article-contact-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;
    background: #f6e9e2;
    color: #e6187c;
}

.article-contact-info-card > div:last-child {
    min-width: 0;
}

.article-contact-info-card span {
    display: block;
    margin-bottom: 3px;
    color: #999;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-contact-info-card a,
.article-contact-info-card p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
}

.article-contact-info-card a {
    font-weight: 700;
}

.article-contact-info-card a:hover {
    color: #e6187c;
}


/* =========================================
   SOCIAL
========================================= */

.article-contact-social {
    margin-top: 28px;
}

.article-contact-social > span {
    display: block;
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
    font-weight: 700;
}

.article-contact-social-links {
    display: flex;
    gap: 8px;
}

.article-contact-social-links a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    border: 1px solid #e4ded9;

    color: #555;
    font-size: 13px;

    transition: .3s;
}

.article-contact-social-links a:hover {
    background: #e6187c;
    border-color: #e6187c;
    color: #fff;
    transform: translateY(-3px);
}


/* =========================================
   CONTACT FORM WRAPPER
========================================= */

.article-contact-form-wrapper {
    padding: 35px;
    background: #fff;
    border: 1px solid #e7e0da;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(40,25,10,.06);
}

.article-contact-form-header {
    margin-bottom: 28px;
}

.article-contact-form-header > span {
    display: block;
    margin-bottom: 6px;
    color: #e6187c;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-contact-form-header h2 {
    margin: 0 0 8px;
    color: #282828;
    font-family: Georgia, serif;
    font-size: 32px;
}

.article-contact-form-header p {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   FORM
========================================= */

.article-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.article-contact-form-group {
    margin-bottom: 18px;
}

.article-contact-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #444;
    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   INPUT
========================================= */

.article-contact-input {
    position: relative;
}

.article-contact-input > svg {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #aaa;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
}

.article-contact-input input,
.article-contact-input select {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;

    border: 1px solid #e3ddd8;
    border-radius: 9px;

    outline: none;

    background: #fcfbfa;
    color: #444;

    font-size: 15px;

    transition: .25s;
}

.article-contact-input select {
    appearance: auto;
}

.article-contact-input input:focus,
.article-contact-input select:focus {
    border-color: #e6187c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(157,53,31,.06);
}


/* =========================================
   TEXTAREA
========================================= */

.article-contact-textarea {
    position: relative;
}

.article-contact-textarea > svg {
    position: absolute;
    top: 16px;
    left: 15px;
    color: #aaa;
    font-size: 15px;
}

.article-contact-textarea textarea {
    width: 100%;
    min-height: 145px;

    padding: 14px 14px 14px 42px;

    resize: vertical;

    border: 1px solid #e3ddd8;
    border-radius: 9px;

    outline: none;

    background: #fcfbfa;
    color: #444;

    font-size: 13px;
    line-height: 1.6;

    transition: .25s;
}

.article-contact-textarea textarea:focus {
    border-color: #e6187c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(157,53,31,.06);
}


/* =========================================
   CHECKBOX
========================================= */

.article-contact-form-bottom {
    margin-bottom: 20px;
}

.article-contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: #777;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
}

.article-contact-checkbox input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 1px;
    accent-color: #e6187c;
}

.article-contact-checkbox a {
    color: #e6187c;
    font-weight: 700;
}


/* =========================================
   SUBMIT
========================================= */

.article-contact-submit {
    width: 100%;
    min-height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 9px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}

.article-contact-submit:hover {
    background: #590b31;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157,53,31,.2);
}


/* =========================================
   QUICK CONTACT
========================================= */

.article-contact-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.article-contact-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 22px;

    background: #fff;
    border: 1px solid #e8e1db;
    border-radius: 15px;

    transition: .3s;
}

.article-contact-quick-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40,25,10,.07);
}

.article-contact-quick-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: #f6e9e2;
    color: #e6187c;
}

.article-contact-quick-item span {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    font-weight: 800;
}

.article-contact-quick-item p {
    margin: 0 0 7px;
    color: #888;
    font-size: 15px;
    line-height: 1.6;
}

.article-contact-quick-item a {
    color: #e6187c;
    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   MAP
========================================= */

.article-contact-map-section {
    margin-bottom: 60px;
}

.article-contact-map-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.article-contact-map-header span {
    display: block;
    margin-bottom: 6px;
    color: #e6187c;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-contact-map-header h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 35px;
    color: #282828;
}

.article-contact-map-header > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e6187c;
    font-size: 16px;
    font-weight: 700;
}

.article-contact-map {
    height: 390px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e5ded8;
}

.article-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================
   FAQ
========================================= */

.article-contact-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 38px 45px;

    border-radius: 20px;

    background: #f3e8df;
}

.article-contact-faq span {
    display: block;
    margin-bottom: 6px;
    color: #e6187c;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.article-contact-faq h2 {
    margin: 0 0 6px;
    color: #282828;
    font-family: Georgia, serif;
    font-size: 30px;
}

.article-contact-faq p {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.article-contact-faq > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;

    padding: 13px 21px;

    border-radius: 8px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    transition: .3s;
}

.article-contact-faq > a:hover {
    background: #590b31;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .article-contact-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .article-contact-quick {
        grid-template-columns: 1fr 1fr;
    }

    .article-contact-quick-item:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .article-contact-page {
        padding: 25px 0 60px;
    }

    .article-contact-page .container {
        width: min(100% - 28px, 1200px);
    }

    .article-contact-hero {
        padding: 48px 25px;
        margin-bottom: 50px;
        border-radius: 18px;
    }

    .article-contact-hero h1 {
        font-size: 43px;
    }

    .article-contact-hero p {
        font-size: 14px;
    }

    .article-contact-info h2 {
        font-size: 34px;
    }

    .article-contact-form-wrapper {
        padding: 22px 18px;
        border-radius: 17px;
    }

    .article-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-contact-quick {
        grid-template-columns: 1fr;
    }

    .article-contact-quick-item:last-child {
        grid-column: auto;
    }

    .article-contact-map-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-contact-map {
        height: 300px;
        border-radius: 15px;
    }

    .article-contact-faq {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 23px;
    }

    .article-contact-faq > a {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .article-contact-breadcrumb {
        font-size: 15px;
        gap: 7px;
    }

    .article-contact-hero h1 {
        font-size: 36px;
    }

    .article-contact-map-header h2 {
        font-size: 30px;
    }

    .article-contact-faq h2 {
        font-size: 26px;
    }

}

.menu-list .nav-item {
    position: relative;
}

.navigation-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 999;
    width: 250px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e8e1dc;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 40px rgba(30, 20, 10, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
    max-height: 350px;
    overflow-y: auto;
}


/* Show Dropdown */

.menu-list .nav-item:hover > .navigation-dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* Dropdown Items */

.navigation-dropdown li {
    width: 100%;
}

.navigation-dropdown li a {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 10px 12px;

    border-radius: 7px;

    color: #555;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all .2s ease;
}

.navigation-dropdown li a::after {
    display: none;
}

.navigation-dropdown li a:hover {
    padding-left: 17px;

    background: #f7eee9;
    color: #e6187c;
}

.hero-zoom-item {
    position: relative;
    overflow: hidden;
    touch-action: pan-x pan-y pinch-zoom;
}

.hero-zoom-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform-origin: center center;

    transition: transform .25s ease;

    user-select: none;
    -webkit-user-drag: none;
}


/* =========================================
   ZOOM CONTROLS
========================================= */

.hero-zoom-controls {
    position: absolute;

    right: 20px;
    bottom: 20px;

    z-index: 20;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 6px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;

    background: rgba(0,0,0,.55);

    backdrop-filter: blur(8px);
}


/* =========================================
   BUTTON
========================================= */

.hero-zoom-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
    font-size: 25px;
}

.hero-zoom-btn:hover {
    background: #fff;
    color: #e6187c;

    transform: translateY(-2px);
}

.hero-zoom-btn i {
    font-size: 16px;
}


/* =========================================
   ZOOM VALUE
========================================= */

.hero-zoom-value {
    min-width: 45px;

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    text-align: center;
}


/* =========================================
   FULLSCREEN
========================================= */

.hero-zoom-item:fullscreen {
    width: 100vw;
    height: 100vh;

    background: #000;
}

.hero-zoom-item:fullscreen .hero-zoom-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.hero-zoom-item:-webkit-full-screen {
    width: 100vw;
    height: 100vh;

    background: #000;
}

.hero-zoom-item:-webkit-full-screen .hero-zoom-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-zoom-controls {
        right: 12px;
        bottom: 12px;

        gap: 3px;

        padding: 5px;
    }

    .hero-zoom-btn {
        width: 32px;
        height: 32px;
    }

    .hero-zoom-value {
        min-width: 40px;
        font-size: 16px;
    }

}

.login-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 20px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(157, 53, 31, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(157, 53, 31, .08),
            transparent 30%
        ),
        #f7f3ef;
}


/* =========================================
   WRAPPER
========================================= */

.login-wrapper {
    width: min(1120px, 100%);

    min-height: 680px;

    display: grid;

    grid-template-columns:
        1fr 470px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #eadfd7;

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(65, 35, 20, .12);
}


/* =========================================
   LEFT INTRO
========================================= */

.login-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 55px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #b34375 0%, #991952 48%, #5a072c 100%);
}

.login-intro::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -130px;
    right: -130px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;
}

.login-intro::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -320px;
    left: -200px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 50%;
}


/* =========================================
   BRAND
========================================= */

.login-brand {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;
}

.login-brand-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.22);

    font-size: 19px;
}

.login-brand strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}

.login-brand span {
    display: block;

    margin-top: 2px;

    font-size: 16px;

    letter-spacing: 1px;

    opacity: .75;
}


/* =========================================
   INTRO CONTENT
========================================= */

.login-intro-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
    margin-bottom: auto;

    max-width: 510px;
}

.login-eyebrow {
    display: inline-flex;

    padding: 7px 12px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: rgba(255,255,255,.12);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-intro h1 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(35px, 4vw, 53px);

    line-height: 1.15;

    font-weight: 600;
}

.login-intro h1 span {
    display: block;

    color: #f4d6c8;
}

.login-intro-content > p {
    max-width: 470px;

    margin: 22px 0 35px;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.login-features {
    display: grid;

    gap: 14px;
}

.login-feature {
    display: flex;
    align-items: center;

    gap: 13px;
}

.login-feature > span {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,.12);

    color: #f6d9cc;

    font-size: 14px;
}

.login-feature strong {
    display: block;

    margin-bottom: 3px;

    font-size: 16px;
}

.login-feature small {
    color: rgba(255,255,255,.62);

    font-size: 16px;
}


/* =========================================
   LOGIN CARD
========================================= */

.login-card {
    padding: 55px 48px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================
   CARD HEADER
========================================= */

.login-card-header {
    margin-bottom: 30px;
}

.login-card-label {
    display: inline-block;

    margin-bottom: 9px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.login-card-header h2 {
    margin: 0 0 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: #292929;

    font-size: 31px;

    line-height: 1.2;
}

.login-card-header p {
    margin: 0;

    color: #e6187c;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   FORM
========================================= */

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 19px;
}

.form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label-row a {
    color: #e6187c;

    font-size: 16px;
    font-weight: 700;
}

.form-label-row a:hover {
    text-decoration: underline;
}


/* =========================================
   INPUT
========================================= */

.input-box {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 49px;

    border: 1px solid #ded8d3;

    border-radius: 10px;

    background: #fff;

    transition: all .25s ease;
}

.input-box > svg {
    width: 45px;

    text-align: center;

    color: #e6187c;

    font-size: 13px;
}

.input-box input {
    width: 100%;

    height: 47px;

    padding: 0 43px 0 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #333;

    font-size: 16px;
}

.input-box input::placeholder {
    color: #aaa;
}

.input-box:focus-within {
    border-color: #e6187c;

    box-shadow:
        0 0 0 3px rgba(157,53,31,.08);
}


/* =========================================
   PASSWORD TOGGLE
========================================= */

.password-toggle {
    position: absolute;

    right: 8px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: #888;

    cursor: pointer;
}

.password-toggle:hover {
    color: #e6187c;

    background: #f8f0ec;
}


/* =========================================
   REMEMBER ME
========================================= */

.login-options {
    margin: 3px 0 20px;
}

.remember-me {
    display: inline-flex !important;
    align-items: center;

    gap: 8px;

    margin: 0 !important;

    color: #777 !important;

    font-size: 16px !important;

    font-weight: 500 !important;

    cursor: pointer;
}

.remember-me input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.custom-checkbox {
    width: 16px;
    height: 16px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d3ccc6;

    border-radius: 4px;

    transition: .2s;
}

.remember-me input:checked + .custom-checkbox {
    background: #e6187c;

    border-color: #e6187c;
}

.remember-me input:checked + .custom-checkbox::after {
    content: "✓";

    color: #fff;

    font-size: 16px;
    font-weight: 800;
}


/* =========================================
   LOGIN BUTTON
========================================= */

.login-submit {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;
    border-radius: 10px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 9px 22px rgba(157,53,31,.18);

    transition: all .25s ease;
}

.login-submit:hover {
    background: #610b2f;

    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(157,53,31,.24);
}

.login-submit i {
    font-size: 16px;

    transition: transform .25s ease;
}

.login-submit:hover i {
    transform: translateX(4px);
}


/* =========================================
   DIVIDER
========================================= */

.login-divider {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 23px 0;

    color: #aaa;

    font-size: 16px;

    white-space: nowrap;
}

.login-divider::before,
.login-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #ebe6e2;
}


/* =========================================
   GOOGLE LOGIN
========================================= */

.google-login {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #ded8d3;
    border-radius: 10px;

    background: #fff;
    color: #444;

    font-size: 16px;
    font-weight: 650;

    cursor: pointer;

    transition: all .25s ease;
}

.google-login:hover {
    border-color: #bbb2ab;

    background: #faf8f6;

    transform: translateY(-1px);
}

.google-icon {
    color: #e72179;

    font-size: 14px;
}


/* =========================================
   REGISTER
========================================= */

.register-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 25px;

    color: #e6187c;

    font-size: 16px;
}

.register-link a {
    color: #e6187c;

    font-weight: 750;
}

.register-link a:hover {
    text-decoration: underline;
}


/* =========================================
   MOBILE LOGO
========================================= */

.mobile-login-logo {
    display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .login-wrapper {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .login-intro {
        display: none;
    }

    .login-card {
        padding: 50px 45px;
    }

    .mobile-login-logo {
        display: flex;

        justify-content: center;

        margin-bottom: 20px;
    }

    .mobile-login-logo .login-brand-icon {
        color: #fff;

        background: #e6187c;
        border-color: #e6187c;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .login-page {
        padding: 20px 12px;
    }

    .login-wrapper {
        border-radius: 20px;
    }

    .login-card {
        padding: 35px 22px;
    }

    .login-card-header {
        margin-bottom: 25px;
    }

    .login-card-header h2 {
        font-size: 27px;
    }

    .login-card-header p {
        font-size: 16px;
    }

    .login-intro {
        display: none;
    }

}

/* =========================================
   MAGAZINE PLANS SECTION
========================================= */

.magazine-plans-section {
    position: relative;
    padding: 90px 0px;
    background: #fff;
    overflow: hidden;
}

.magazine-plans-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -250px;
    left: -180px;
    border-radius: 50%;
    border: 1px solid rgba(230, 24, 124, .10);
}

.magazine-plans-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    border: 1px solid rgba(230, 24, 124, .10);
}

.magazine-plans-section .container {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    margin: auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.magazine-plans-header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.magazine-plans-header h2 {
    margin: 0 0 15px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
}

.magazine-plans-header p {
    max-width: 650px;
    margin: auto;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PLANS GRID
========================================= */

.magazine-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* =========================================
   PLAN CARD
========================================= */

.magazine-plan-card {
    position: relative;

    display: flex;
    gap: 25px;

    padding: 35px;

    background: #fff;

    border: 1px solid #f0d5e3;
    border-radius: 22px;

    box-shadow: 0 18px 50px rgba(120, 30, 75, .08);

    overflow: hidden;

    transition: all .3s ease;
}

.magazine-plan-card:hover {
    transform: translateY(-7px);

    border-color: #e6187c;

    box-shadow: 0 25px 60px rgba(230, 24, 124, .15);
}


/* =========================================
   ICON
========================================= */

.magazine-plan-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #fde5f0;

    color: #e6187c;

    font-size: 25px;
}

.hardcopy-plan .magazine-plan-icon {
    background: #e6187c;
    color: #fff;
}


/* =========================================
   CONTENT
========================================= */

.magazine-plan-content {
    flex: 1;
}

.magazine-plan-label {
    display: block;
    margin-bottom: 8px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.magazine-plan-content h3 {
    margin: 0 0 12px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    line-height: 1.3;
}

.magazine-plan-content > p {
    margin: 0 0 20px;

    color: #666;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   PRICE
========================================= */

.magazine-price {
    display: flex;
    align-items: baseline;

    margin-bottom: 22px;

    color: #e6187c;
}

.price-symbol {
    margin-right: 3px;

    font-size: 22px;
    font-weight: 700;
}

.magazine-price strong {
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
}

.price-text {
    margin-left: 7px;

    color: #777;

    font-size: 16px;
}


/* =========================================
   FEATURES
========================================= */

.magazine-plan-features {
    display: grid;
    gap: 10px;

    padding: 0;
    margin: 0 0 25px;

    list-style: none;
}

.magazine-plan-features li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #555;

    font-size: 16px;
    line-height: 1.5;
}

.magazine-plan-features li svg {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fde5f0;
    color: #e6187c;

    font-size: 12px;
}


/* =========================================
   BUTTON
========================================= */

.magazine-plan-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 22px;

    border-radius: 9px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    transition: all .25s ease;
}

.magazine-plan-btn:hover {
    background: #c9146b;
    color: #fff;

    transform: translateX(3px);

    box-shadow: 0 8px 20px rgba(230, 24, 124, .22);
}

.magazine-plan-btn i {
    font-size: 14px;

    transition: transform .25s ease;
}

.magazine-plan-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   POPULAR BADGE
========================================= */

.magazine-plan-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 7px 13px;

    border-radius: 30px;

    background: #fde5f0;
    color: #e6187c;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   HARD COPY CARD
========================================= */

.hardcopy-plan {
    border-color: #efb9d3;

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #fff7fb 100%
        );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .magazine-plans-section {
        padding: 70px 18px;
    }

    .magazine-plans-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .magazine-plans-section {
        padding: 55px 15px;
    }

    .magazine-plans-header {
        margin-bottom: 35px;
    }

    .magazine-plans-header h2 {
        font-size: 30px;
    }

    .magazine-plans-header p {
        font-size: 16px;
    }

    .magazine-plan-card {
        flex-direction: column;
        gap: 18px;

        padding: 25px;

        border-radius: 17px;
    }

    .magazine-plan-icon {
        width: 58px;
        height: 58px;
    }

    .magazine-plan-content h3 {
        font-size: 24px;
    }

    .magazine-plan-content > p {
        font-size: 16px;
    }

    .magazine-price strong {
        font-size: 40px;
    }

    .magazine-plan-features li {
        font-size: 16px;
    }

    .magazine-plan-btn {
        width: 100%;
        font-size: 16px;
    }

}




/* =========================================
   FEATURED CONTENT
========================================= */

.featured-content-section {
    padding: 90px 20px;
    background: #fff7fb;
}

.featured-content-section .container {
    width: min(1150px, 100%);
    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.featured-content-header {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.featured-content-header .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 1px;
}

.featured-content-header h2 {
    margin: 0 0 14px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    line-height: 1.25;
}

.featured-content-header p {
    margin: 0;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   TABS
========================================= */

.featured-content-tabs {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}

.featured-tab {
    padding: 12px 22px;

    border: 1px solid #ead9e2;
    border-radius: 30px;

    background: #fff;
    color: #555;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}

.featured-tab:hover,
.featured-tab.active {
    background: #e6187c;
    border-color: #e6187c;

    color: #fff;

    box-shadow:
        0 7px 20px rgba(230, 24, 124, .18);
}


/* =========================================
   TAB CONTENT
========================================= */

.featured-tab-content {
    display: none;

    animation: featuredFade .35s ease;
}

.featured-tab-content.active {
    display: block;
}

@keyframes featuredFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   ARTICLES GRID
========================================= */

.featured-articles-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   ARTICLE CARD
========================================= */

.featured-article-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #eadfe5;
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(50, 30, 40, .06);

    transition: all .3s ease;
}

.featured-article-card:hover {
    transform: translateY(-6px);

    border-color: #efafd0;

    box-shadow:
        0 20px 45px rgba(230, 24, 124, .12);
}


/* =========================================
   ARTICLE IMAGE
========================================= */

.featured-article-image {
    position: relative;

    height: 235px;

    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.featured-article-card:hover
.featured-article-image img {
    transform: scale(1.06);
}


/* =========================================
   CATEGORY
========================================= */

.article-category {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 13px;

    border-radius: 30px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 600;
}


/* =========================================
   ARTICLE BODY
========================================= */

.featured-article-body {
    padding: 24px;
}

.article-date {
    display: block;

    margin-bottom: 10px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 600;
}

.featured-article-body h3 {
    margin: 0 0 12px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    line-height: 1.4;
}

.featured-article-body p {
    margin: 0 0 18px;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   READ ARTICLE
========================================= */

.read-article {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 700;

    transition: all .25s ease;
}

.read-article:hover {
    color: #bd1265;
}

.read-article i {
    transition: transform .25s ease;
}

.read-article:hover i {
    transform: translateX(5px);
}


/* =========================================
   EDITOR CHOICE
========================================= */

.editor-choice-card {
    display: grid;

    grid-template-columns: 45% 55%;

    overflow: hidden;

    border: 1px solid #ead9e2;
    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 15px 45px rgba(50, 30, 40, .07);
}

.editor-choice-image {
    min-height: 370px;
}

.editor-choice-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.editor-choice-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 45px;
}

.editor-choice-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 700;
}

.editor-choice-content h3 {
    margin: 0 0 18px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    line-height: 1.4;
}

.editor-choice-content p {
    margin: 0 0 25px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.editor-choice-btn {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 13px 22px;

    border-radius: 8px;

    background: #e6187c;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    transition: .25s;
}

.editor-choice-btn:hover {
    background: #c9146b;
    color: #fff;

    transform: translateX(3px);
}


/* =========================================
   TOP WRITERS
========================================= */

.top-writers-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.top-writer-card {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px;

    border: 1px solid #eadfe5;
    border-radius: 18px;

    background: #fff;

    transition: .3s ease;
}

.top-writer-card:hover {
    border-color: #e6187c;

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(230, 24, 124, .10);
}

.top-writer-image {
    width: 90px;
    height: 90px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;

    border: 3px solid #fde1ef;
}

.top-writer-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}
span.writer-featured-badge {
    position: absolute;
   color: #e9b007;
}
.top-writer-info h3 {
    margin: 0 0 5px;

    color: #252525;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
}

.top-writer-info > span {
    display: block;

    margin-bottom: 7px;

    color: #e6187c;

    font-size: 16px;
}

.top-writer-info p {
    margin: 0 0 10px;

    color: #777;

    font-size: 16px;
}

.top-writer-info a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #e6187c;

    font-size: 16px;
    font-weight: 700;
}

.top-writer-info a:hover {
    color: #bd1265;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-writers-grid {
        grid-template-columns: 1fr;
    }

    .editor-choice-card {
        grid-template-columns: 1fr;
    }

    .editor-choice-image {
        min-height: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .featured-content-section {
        padding: 60px 15px;
    }

    .featured-content-header h2 {
        font-size: 30px;
    }

    .featured-content-tabs {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 8px;
    }

    .featured-tab {
        flex-shrink: 0;

        padding: 11px 17px;

        font-size: 16px;
    }

    .featured-articles-grid {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        height: 230px;
    }

    .featured-article-body h3 {
        font-size: 22px;
    }

    .editor-choice-content {
        padding: 28px 22px;
    }

    .editor-choice-content h3 {
        font-size: 25px;
    }

    .top-writer-card {
        align-items: flex-start;

        padding: 20px;
    }

}

/* =========================================
   EXPLORE CONTENT SECTION
========================================= */

.explore-content-section {
    position: relative;

    padding: 90px 20px;

    background: #fff;

    overflow: hidden;
}

.explore-content-section .container {
    width: min(1150px, 100%);

    margin: auto;

    position: relative;

    z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.explore-section-header {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.explore-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #e6187c;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.explore-section-header h2 {
    margin: 0 0 14px;

    color: #252525;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    line-height: 1.25;
}

.explore-section-header p {
    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CONTENT GRID
========================================= */

.explore-content-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.explore-content-card {
    position: relative;

    padding: 28px;

    background: #fff;

    border: 1px solid #efd9e5;

    border-radius: 20px;

    box-shadow:
        0 12px 40px rgba(100, 30, 65, .06);

    transition: all .3s ease;
}

.explore-content-card:hover {
    transform: translateY(-5px);

    border-color: #e6187c;

    box-shadow:
        0 20px 50px rgba(230, 24, 124, .11);
}


/* =========================================
   CARD TOP
========================================= */

.explore-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}

.explore-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #fde5f0;

    color: #e6187c;

    font-size: 22px;
}

.explore-view-all {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #e6187c;

    font-size: 16px;

    font-weight: 700;

    transition: .25s;
}

.explore-view-all:hover {
    color: #bd1265;
}

.explore-view-all i {
    transition: transform .25s;
}

.explore-view-all:hover i {
    transform: translateX(4px);
}


/* =========================================
   CARD HEADING
========================================= */

.explore-card-heading {
    margin-bottom: 22px;
}

.explore-card-heading span {
    display: block;

    margin-bottom: 5px;

    color: #e6187c;

    font-size: 16px;

    font-weight: 600;
}

.explore-card-heading h3 {
    margin: 0;

    color: #252525;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;

    line-height: 1.35;
}


/* =========================================
   CATEGORY LIST
========================================= */

.category-list {
    display: grid;

    gap: 8px;
}

.category-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 15px;

    border: 1px solid #f0e2e8;

    border-radius: 10px;

    color: #444;

    font-size: 16px;

    transition: .25s;
}

.category-item span {
    display: flex;

    align-items: center;

    gap: 11px;
}

.category-item span i {
    width: 25px;

    color: #e6187c;

    text-align: center;
}

.category-item > i {
    color: #aaa;

    font-size: 13px;

    transition: .25s;
}

.category-item:hover {
    background: #fff1f7;

    border-color: #e6187c;

    color: #e6187c;
}

.category-item:hover > i {
    color: #e6187c;

    transform: translateX(4px);
}


/* =========================================
   MAGAZINE ARCHIVE
========================================= */

.archive-list {
    display: grid;

    gap: 12px;
}

.archive-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px;

    border: 1px solid #f0e2e8;

    border-radius: 12px;

    color: #333;

    transition: .25s;
}

.archive-item:hover {
    border-color: #e6187c;

    background: #fff8fb;

    transform: translateX(3px);
}

.archive-cover {
    width: 55px;
    height: 68px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 5px;

    box-shadow:
        0 4px 10px rgba(0,0,0,.10);
}

.archive-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.archive-info {
    flex: 1;
}

.archive-info strong {
    display: block;

    margin-bottom: 5px;

    color: #333;

    font-size: 16px;
}

.archive-info span {
    color: #e6187c;

    font-size: 16px;
}

.archive-item > i {
    margin-right: 7px;

    color: #aaa;

    transition: .25s;
}

.archive-item:hover > i {
    color: #e6187c;

    transform: translateX(4px);
}


/* =========================================
   MOST READ
========================================= */

.most-read-list {
    display: grid;

    gap: 15px;
}

.most-read-item {
    display: flex;

    gap: 15px;

    padding-bottom: 15px;

    border-bottom: 1px solid #eee3e8;

    color: #333;
}

.most-read-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.article-number {
    min-width: 38px;

    color: #e6187c;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 700;
}

.most-read-info {
    flex: 1;
}

.most-read-info > span {
    display: block;

    margin-bottom: 4px;

    color: #e6187c;

    font-size: 16px;
}

.most-read-info strong {
    display: block;

    margin-bottom: 6px;

    color: #333;

    font-size: 16px;

    line-height: 1.5;
}

.most-read-info small {
    color: #888;

    font-size: 16px;
}


/* =========================================
   RECENT ARTICLES
========================================= */

.recent-articles-list {
    display: grid;

    gap: 14px;
}

.recent-article-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 14px;

    border-bottom: 1px solid #eee3e8;
}

.recent-article-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.recent-article-image {
    width: 82px;
    height: 70px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 9px;
}

.recent-article-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.recent-article-item:hover
.recent-article-image img {
    transform: scale(1.07);
}

.recent-article-info {
    flex: 1;
}

.recent-article-info span {
    display: block;

    margin-bottom: 4px;

    color: #e6187c;

    font-size: 16px;
}

.recent-article-info strong {
    display: block;

    margin-bottom: 5px;

    color: #333;

    font-size: 16px;

    line-height: 1.4;
}

.recent-article-info small {
    color: #888;

    font-size: 16px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .explore-content-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .explore-content-section {
        padding: 60px 15px;
    }

    .explore-section-header {
        margin-bottom: 35px;
    }

    .explore-section-header h2 {
        font-size: 30px;
    }

    .explore-section-header p {
        font-size: 16px;
    }

    .explore-content-card {
        padding: 22px;

        border-radius: 16px;
    }

    .explore-card-heading h3 {
        font-size: 23px;
    }

    .category-item,
    .archive-info strong,
    .archive-info span,
    .most-read-info strong,
    .recent-article-info strong {
        font-size: 16px;
    }

}



/* =========================================
   MAGAZINE YEAR ARCHIVE
========================================= */

.archive-section {
    width: 100%;
    padding: 55px 0 75px;
    background: #f7f7f7;
}

.archive-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* HEADER */

.archive-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #ddd;
}

.archive-eyebrow {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;

    color: #e60073;
}

.archive-title {
    margin: 0;

    font-size: 42px;
    font-weight: 800;

    color: #111;
}

.archive-subtitle {
    margin: 8px 0 0;

    font-size: 14px;

    color: #777;
}

.archive-meta {
    text-align: right;
}

.archive-meta span {
    display: block;

    font-size: 9px;
    letter-spacing: 2px;

    color: #999;
}

.archive-meta strong {
    display: block;

    margin-top: 3px;

    font-size: 28px;

    color: #111;
}


/* =========================================
   SMALL YEAR BOXES
========================================= */

.archive-years {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================
   YEAR CARD
========================================= */

.year-card {

    position: relative;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 22px;

    text-decoration: none;

    color: #111;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 3px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


/* TOP COLOR */

.year-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #e60073,
            #8b2be2,
            #2446d8
        );
}


/* BIG BACKGROUND YEAR */

.year-card::before {

    content: attr(data-year);

    position: absolute;

    right: -8px;
    bottom: -25px;

    font-size: 95px;

    line-height: 1;

    font-weight: 900;

    color: rgba(230, 0, 115, .045);

    pointer-events: none;
}


.year-card:hover {

    transform: translateY(-5px);

    border-color: #e60073;

    box-shadow:
        0 12px 30px rgba(0,0,0,.10);
}


/* =========================================
   TOP
========================================= */

.year-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.year-number {

    font-family: monospace;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #e60073;
}


.year-label {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #999;
}


/* =========================================
   YEAR
========================================= */

.year-content {

    position: relative;

    z-index: 2;
}


.year-content h2 {

    margin: 0;

    font-size: 55px;

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;

    color: #111;
}


.year-content p {

    margin: 10px 0 0;

    font-size: 12px;

    color: #777;

    font-weight: 600;
}


/* =========================================
   BOTTOM
========================================= */

.year-action {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.view-text {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #777;

    text-transform: uppercase;
}


.arrow {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #ccc;

    border-radius: 50%;

    background: #fff;

    color: #111;

    font-size: 17px;

    transition: all .25s ease;
}


.year-card:hover .arrow {

    color: #fff;

    border-color: #e60073;

    background:
        linear-gradient(
            135deg,
            #e60073,
            #8b2be2
        );

    transform: translateX(3px);
}


/* =========================================
   ALTERNATE BACKGROUNDS
========================================= */

.year-card:nth-child(2n) {

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff4f9
        );
}

.year-card:nth-child(3n) {

    background:
        linear-gradient(
            145deg,
            #fff,
            #f4f3ff
        );
}

.year-card:nth-child(4n) {

    background:
        linear-gradient(
            145deg,
            #fff,
            #f2f7ff
        );
}


/* =========================================
   FOOTER
========================================= */

.archive-footer {

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid #ddd;

    font-size: 12px;

    color: #777;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .archive-years {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 768px) {

    .archive-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .archive-meta {

        text-align: left;
    }

    .archive-years {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .archive-section {

        padding: 35px 0 50px;
    }

    .archive-title {

        font-size: 32px;
    }

    .archive-years {

        grid-template-columns: 1fr;

    }

    .year-card {

        min-height: 200px;

    }

}




.month-archive-section {
    padding: 70px 0;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #faf7ff 50%,
            #ffffff 100%
        );
}

.month-archive-wrapper {
    max-width: 1500px;
    margin: auto;
}


/* HEADER */

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding: 20px 0 35px;
    margin-bottom: 35px;

    border-bottom: 1px solid #ddd;
}

.month-eyebrow {
    display: block;

    color: #ec0876;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.month-header h1 {
    margin: 0;

    font-size: clamp(65px, 9vw, 110px);

    line-height: .85;

    font-weight: 900;

    letter-spacing: -6px;

    color: #111;
}

.month-header p {
    margin: 18px 0 0;

    color: #777;

    font-size: 16px;
}


/* BACK */

.back-years {
    display: inline-flex;

    align-items: center;

    padding: 12px 20px;

    border: 1px solid #ccc;

    border-radius: 30px;

    background: #fff;

    color: #222;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}

.back-years:hover {
    color: #fff;

    background: #ec0876;

    border-color: #ec0876;
}


/* MONTH GRID */

.month-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* CARD */

.month-card {
    display: block;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 7px;

    color: #111;

    text-decoration: none;

    transition: .3s;
}

.month-card:hover {
    transform: translateY(-7px);

    border-color: #ec0876;

    box-shadow:
        0 20px 45px rgba(80, 30, 100, .14);
}


/* IMAGE */

.month-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #eee;
}

.month-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s;
}

.month-card:hover .month-image img {
    transform: scale(1.05);
}


/* MONTH NUMBER */

.month-number {
    position: absolute;

    top: 18px;
    left: 18px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ec0876,
            #8a2be2
        );

    font-size: 12px;

    font-weight: 800;
}


.month-content {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 22px;
}

.month-year {
    display: block;

    color: #999;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.month-content h2 {
    margin: 6px 0 0;

    font-size: 28px;

    font-weight: 800;
}

.month-arrow {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #ccc;

    border-radius: 50%;

    font-size: 20px;

    transition: .3s;
}

.month-card:hover .month-arrow {
    color: #fff;

    background: #ec0876;

    border-color: #ec0876;

    transform: translateX(4px);
}

.empty-months {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;

    background: #fff;

    border: 1px dashed #ccc;
}

@media(max-width: 1000px) {

    .month-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 650px) {

    .month-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .month-grid {
        grid-template-columns: 1fr;
    }

    .month-header h1 {
        font-size: 70px;
    }

}

.magazine-detail-section {
    background: #fff;
    padding: 30px 0 60px;
}

.magazine-viewer-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.magazine-viewer {
    position: relative;

    width: 100%;

    min-height: 650px;

    background: #fff;

    border-radius: 5px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.magazine-slide {
    display: none;

    width: 100%;

   
    align-items: center;

    justify-content: center;

    position: relative;
}

.magazine-slide.active {
    display: flex;
}

.magazine-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.magazine-nav {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: none;

    background: #fff;

    color: #ec008c;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    line-height: 1;

    cursor: pointer;

    z-index: 20;

    box-shadow: 0 2px 12px rgba(0,0,0,.12);

    transition: all .2s ease;
}

.magazine-nav:hover {
    background: #ec008c;

    color: #fff;

    transform: translateY(-50%) scale(1.05);
}

.magazine-prev {
    left: 15px;
}

.magazine-next {
    right: 15px;
}

.magazine-zoom-controls {
    position: absolute;

    right: 10px;

    bottom: 10px;

    z-index: 30;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-radius: 4px;

    background: rgba(20,20,20,.82);

    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.magazine-zoom-btn {
    width: 30px;

    height: 30px;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}

.magazine-zoom-btn:hover {
    background: rgba(255,255,255,.15);
}

.magazine-zoom-value {
    min-width: 48px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 11px;

    border-left: 1px solid rgba(255,255,255,.15);

    border-right: 1px solid rgba(255,255,255,.15);
}

.magazine-fullscreen-btn {
    width: 30px;

    height: 30px;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 14px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.magazine-fullscreen-btn:hover {
    background: rgba(255,255,255,.15);
}

.magazine-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.magazine-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 0;
    background: #ddd;
    padding: 0;
    cursor: pointer;
    transition: all .2s ease;
    font-size: 11px;
}

.magazine-dot.active {
    width: 18px;
    border-radius: 4px;
    background: #ec008c;
    color: #fff;
}

.magazine-actions {
    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 10px;

    margin-top: 12px;
}

.magazine-action-btn {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 16px;

    border-radius: 4px;

    border: 1px solid #ddd;

    background: #fff;

    color: #222;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all .2s ease;
}

.magazine-action-btn:hover {
    border-color: #ec008c;

    color: #ec008c;
}

.magazine-download-btn {
    background: #ec008c;

    border-color: #ec008c;

    color: #fff;
}

.magazine-download-btn:hover {
    background: #d9007e;

    border-color: #d9007e;

    color: #fff;
}

.magazine-info {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #eee;
}

.magazine-info h2 {
    margin: 0;

    font-size: 22px;

    font-weight: 700;
}

.magazine-info p {
    margin: 5px 0 0;

    color: #777;
}

@media (max-width: 768px) {

    .magazine-detail-section {
        padding: 15px 0 40px;
    }

    .magazine-viewer {
        min-height: 100%;
    }

    .magazine-slide {
        height: 100%;
    }

    .magazine-slide img {
        max-height: 500px;

        max-width: 95%;
    }

    .magazine-prev {
        left: 8px;
    }

    .magazine-next {
        right: 8px;
    }

    .magazine-nav {
        width: 34px;

        height: 34px;

        font-size: 24px;
    }

    .magazine-actions {
        justify-content: center;
        margin-bottom: 25px;
    }
    .minimal-footer {
        padding-bottom: 20px !important;
    }
    .search-form {
        width: 100%;
    }

}

.share-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
}

.share-dropdown {
    position: absolute;

    right: 0;

    bottom: calc(100% + 10px);

    width: 190px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    padding: 8px 0;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .12);

    z-index: 9999;

    display: none;
}

.share-dropdown::after {
    content: "";

    position: absolute;

    right: 18px;

    bottom: -7px;

    width: 12px;

    height: 12px;

    background: #fff;

    border-right: 1px solid #e5e5e5;

    border-bottom: 1px solid #e5e5e5;

    transform: rotate(45deg);
}


/* open */

.share-dropdown.show {
    display: block;
}

.share-item {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 11px 18px;

    border: 0;

    background: transparent;

    color: #333;

    text-decoration: none;

    font-size: 14px;

    cursor: pointer;

    text-align: left;

    transition: background .15s ease;
}

.share-item:hover {
    background: #f7f7f7;

    color: #ec008c;
}

.share-icon {
    width: 22px;

    min-width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 16px;

    color: #555;
}
@media (max-width: 576px) {
    .share-dropdown {
        right: auto;

        left: 0;
    }
    .share-dropdown::after {
        right: auto;

        left: 18px;
    }
}


/* =========================================
   Newsletter Toast
========================================= */

.newsletter-toast {
    position: fixed;
    top: 25px;
    right: 25px;

    min-width: 320px;
    max-width: 450px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 99999;

    animation:
        newsletterToastIn 0.4s ease forwards;
}


/* Success */

.newsletter-toast.toast-success {
    border-left: 5px solid #22c55e;
}


/* Error */

.newsletter-toast.toast-error {
    border-left: 5px solid #ef4444;
}


/* Icon */

.toast-icon {
    width: 32px;
    height: 32px;

    min-width: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
}


.toast-success .toast-icon {
    background: #dcfce7;
    color: #16a34a;
}


.toast-error .toast-icon {
    background: #fee2e2;
    color: #dc2626;
}


/* Message */

.toast-message {
    flex: 1;

    font-size: 14px;
    line-height: 1.5;

    color: #333333;
}


/* Close */

.toast-close {
    border: 0;
    background: transparent;

    width: 25px;
    height: 25px;

    padding: 0;

    font-size: 22px;
    line-height: 1;

    color: #777;

    cursor: pointer;
}


.toast-close:hover {
    color: #222;
}


/* Enter animation */

@keyframes newsletterToastIn {

    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* Exit animation */

.newsletter-toast.toast-hide {

    animation:
        newsletterToastOut 0.4s ease forwards;

}


@keyframes newsletterToastOut {

    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }

}


/* Mobile */

@media (max-width: 576px) {

    .newsletter-toast {
        top: 15px;
        right: 15px;
        left: 15px;

        min-width: auto;
        max-width: none;
    }

}

/* =========================================
   CONTACT TOAST
========================================= */

.contact-toast {
    position: fixed;

    top: 25px;
    right: 25px;

    width: 420px;
    max-width: calc(100% - 30px);

    padding: 16px 18px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.20);

    z-index: 999999;

    animation: contactToastIn 0.4s ease forwards;
}


.contact-toast-success {
    border-left: 5px solid #22c55e;
}


.contact-toast-error {
    border-left: 5px solid #ef4444;
}


/* Icon */

.contact-toast-icon {

    width: 34px;
    height: 34px;

    min-width: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
}


.contact-toast-success
.contact-toast-icon {

    background: #dcfce7;
    color: #16a34a;
}


.contact-toast-error
.contact-toast-icon {

    background: #fee2e2;
    color: #dc2626;
}


/* Message */

.contact-toast-message {

    flex: 1;

    color: #333333;

    font-size: 14px;

    line-height: 1.5;
}


/* Close */

.contact-toast-close {

    border: 0;

    background: transparent;

    padding: 0;

    width: 25px;
    height: 25px;

    font-size: 23px;

    line-height: 1;

    cursor: pointer;

    color: #777777;
}


.contact-toast-close:hover {

    color: #111111;
}


/* Animation */

@keyframes contactToastIn {

    from {

        opacity: 0;

        transform:
            translateX(100px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


.contact-toast-hide {

    animation:
        contactToastOut 0.4s ease forwards;

}


@keyframes contactToastOut {

    from {

        opacity: 1;

        transform:
            translateX(0);

    }

    to {

        opacity: 0;

        transform:
            translateX(100px);

    }

}


/* Mobile */

@media (max-width: 576px) {

    .contact-toast {

        top: 15px;

        right: 15px;

        left: 15px;

        width: auto;

        max-width: none;

    }

}

.contact-field-error {
    display: block;

    margin-top: 6px;

    color: #dc3545;

    font-size: 13px;

    line-height: 1.4;
}


/* =========================================================
   EDITION CARDS
========================================================= */

.edition-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    width: 100%;

    gap: 18px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #f2a8c8;

    border-radius: 18px;

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   HOVER
========================================================= */

.edition-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(236, 24, 112, 0.08);
}


/* =========================================================
   DIGITAL CARD
========================================================= */

.digital-edition {
    background: #ffffff;
}


/* =========================================================
   PRINT CARD
========================================================= */

.print-edition {
    background: #ffffff;
}


/* =========================================================
   ICON
========================================================= */

.edition-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fde5ef;

    color: #ec1870;

    font-size: 24px;

    flex-shrink: 0;
}


/* Print icon */

.print-edition .edition-icon {
    background: #ec1870;

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.edition-content {
    flex: 1;

    min-width: 0;
}


/* =========================================================
   LABEL
========================================================= */

.edition-label {
    margin-bottom: 5px;

    color: #ec1870;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.8px;
}


/* =========================================================
   HEADING
========================================================= */

.edition-content h3 {
    margin: 0 0 8px;

    color: #111111;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.edition-content p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   PRICE
========================================================= */

.edition-price {
    display: flex;

    align-items: baseline;

    margin-bottom: 15px;

    color: #ec1870;
}


/* ₹ */

.edition-price .currency {
    margin-right: 2px;

    font-size: 17px;

    line-height: 1;

    font-weight: 700;
}


/* 25.00 / 50.00 */

.edition-price .amount {
    font-size: 40px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


/* / Issue */

.edition-price .per {
    margin-left: 6px;

    color: #777777;

    font-size: 13px;

    line-height: 1;

    font-weight: 400;
}


/* =========================================================
   FEATURES
========================================================= */

.edition-features {
    list-style: none;

    padding: 0;

    margin: 0 0 18px;
}


/* Feature item */

.edition-features li {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 7px;

    color: #555555;

    font-size: 14px;

    line-height: 1.4;
}


/* Remove margin from last item */

.edition-features li:last-child {
    margin-bottom: 0;
}


/* Check mark */

.edition-features li::first-letter {
    color: #ec1870;
}


/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.edition-cart-btn {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 10px 18px;

    margin-top: 2px;

    border: 0;

    border-radius: 7px;

    background: #ec1870;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Cart icon */

.edition-cart-btn i {
    font-size: 17px;

    line-height: 1;
}


/* Button hover */

.edition-cart-btn:hover {
    background: #d91466;

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px rgba(236, 24, 112, 0.20);
}


/* Button active */

.edition-cart-btn:active {
    transform: translateY(0);
}


/* =========================================================
   POPULAR BADGE
========================================================= */

.popular-badge {
    position: absolute;

    top: 18px;

    right: 18px;

    padding: 7px 13px;

    border-radius: 20px;

    background: #fde5ef;

    color: #ec1870;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   BOOTSTRAP ROW SPACING
========================================================= */

.edition-card .edition-content {
    padding-right: 0;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .edition-card {
        min-height: 390px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .edition-card {
        margin-bottom: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .edition-card {
        gap: 14px;

        padding: 20px;

        border-radius: 16px;
    }


    /* Icon */

    .edition-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;

        border-radius: 11px;

        font-size: 21px;
    }


    /* Label */

    .edition-label {
        font-size: 13px;

        letter-spacing: 0.7px;
    }


    /* Heading */

    .edition-content h3 {
        font-size: 20px;

        line-height: 1.3;
    }


    /* Description */

    .edition-content p {
        font-size: 13px;

        line-height: 1.5;
    }


    /* Price */

    .edition-price .amount {
        font-size: 35px;
    }


    .edition-price .currency {
        font-size: 16px;
    }


    .edition-price .per {
        font-size: 12px;
    }


    /* Features */

    .edition-features li {
        font-size: 13px;

        margin-bottom: 6px;
    }


    /* Button */

    .edition-cart-btn {
        padding: 9px 15px;

        font-size: 13px;
    }


    /* Popular */

    .popular-badge {
        top: 14px;

        right: 14px;

        padding: 6px 11px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .edition-card {
        flex-direction: column;

        gap: 12px;

        padding: 18px;
    }


    .edition-icon {
        width: 44px;
        height: 44px;

        min-width: 44px;

        font-size: 20px;
    }


    .edition-content h3 {
        font-size: 19px;
    }


    .edition-content p {
        font-size: 13px;
    }


    .edition-price .amount {
        font-size: 32px;
    }


    .edition-features li {
        font-size: 13px;
    }


    .edition-cart-btn {
        padding: 10px 14px;

        font-size: 13px;
    }

}



.header-cart-link {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    transition: .2s ease;
    background: #fff;
}

.header-cart-link i {
    font-size: 23px;
}

.header-cart-link:hover {
    color: #ec1870;

    background: #fff0f6;
}

.header-cart-count {
    position: absolute;

    top: -3px;
    right: -3px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ec1870;
    color: #fff;

    font-size: 10px;
    line-height: 1;

    font-weight: 700;

    border: 2px solid #fff;
}


.checkout-btn {
    width: 100%;
    padding: 13px;
    margin-top: 15px;
    border: 0;
    border-radius: 7px;
    background: #ec1870;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;

    display: block;
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #d91464;
    color: #fff;
    text-decoration: none;
}


.checkout-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: start;
}

.checkout-left,
.checkout-right {
    width: 100%;
}

.saved-address-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background: #fff;
}

.saved-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.saved-label {
    display: inline-block;
    color: #ec1870;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.saved-address-header h3 {
    margin: 0;
    font-size: 20px;
}

.saved-address-content p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.edit-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: 1px solid #ec1870;
    border-radius: 6px;
    color: #ec1870;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.edit-address-btn:hover {
    background: #ec1870;
    color: #fff;
}

.order-summary {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 22px;
    background: #fff;
}

.order-summary h3 {
    margin-bottom: 20px;
    font-size: 21px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.checkout-item strong {
    display: block;
    font-size: 14px;
}

.checkout-item small {
    display: block;
    margin-top: 4px;
    color: #777;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
}

.summary-total strong {
    color: #ec1870;
}

.pay-now-wrapper {
    margin-top: 20px;
}

.pay-now-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    margin-top: 20px;
    background: #ec1870;
    color: #fff !important;
    border: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}

.pay-now-btn:hover {
    background: #d91464;
    color: #fff !important;
}

.pay-now-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.text-danger {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

@media (max-width: 991px) {

    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575px) {

    .saved-address-header {
        align-items: flex-start;
        flex-direction: column;
    }

}


.checkout-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.checkout-source {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.checkout-edition {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ec0875;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.checkout-month {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.checkout-product-name {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.checkout-price {
    font-size: 18px;
    font-weight: 700;
    color: #ec0875;
}

.checkout-price span {
    font-size: 13px;
    font-weight: 400;
    color: #777;
}

.checkout-quantity {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

.checkout-item-total {
    font-size: 13px;
    color: #333;
    margin-top: 5px;
}

.checkout-item-total strong {
    font-weight: 600;
}


.payment-section {
    padding: 50px 0;
    background: #f8f9fc;
}

.payment-card,
.payment-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
}

.payment-card h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.payment-address {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.payment-address h4,
.payment-items h4 {
    margin-bottom: 15px;
}

.payment-address p {
    margin: 6px 0;
    color: #555;
}

.payment-items {
    margin-top: 25px;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.payment-item strong {
    display: block;
}

.payment-item small {
    display: block;
    color: #777;
    margin-top: 3px;
}

.payment-summary h3 {
    margin-bottom: 25px;
}

.summary-row,
.summary-total,
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.summary-item small {
    display: block;
    color: #777;
    margin-top: 4px;
}

.summary-total {
    margin-top: 20px;
    font-size: 22px;
}

.summary-total strong {
    color: #ec1870;
}

.pay-now-btn {
    width: 100%;
    margin-top: 25px;
    padding: 14px 20px;
    border: 0;
    border-radius: 8px;
    background: #ec1870;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.pay-now-btn:hover {
    color: #fff;
    opacity: .92;
}

.pay-now-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.payment-result-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.payment-result-card {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.success-icon,
.failed-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.success-icon {
    background: #e8f8ef;
    color: #20a05a;
}

.failed-icon {
    background: #fff0f0;
    color: #dc3545;
}

.back-cart-btn {
    display: block;
    margin-top: 15px;
    color: #ec1870;
}

.comment-magazine-box {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fff;
    border-left: 3px solid #ed1475;
    border-radius: 6px;
}

.comment-source {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #777;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.comment-magazine-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ed1475;
    text-decoration: none;
}

.comment-magazine-title:hover {
    text-decoration: underline;
}

.user-comment-text {
    margin-top: 10px;
    padding: 0 4px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    word-break: break-word;
}

.magazine-popup {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.magazine-popup.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   OVERLAY
========================================= */

.magazine-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(5px);
}


/* =========================================
   POPUP CONTENT
========================================= */

.magazine-popup-content {
    position: relative;
    z-index: 2;

    width: 95%;
    max-width: 1100px;

    height: 95vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.magazine-close {
    position: absolute;

    top: 0;
    right: 0;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.magazine-close:hover {
    background: #fac64b;
    transform: rotate(90deg);
}


/* =========================================
   BOOK WRAPPER
========================================= */

.magazine-book-wrapper {
    width: 100%;
    height: calc(100% - 70px);

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 2500px;
}


/* =========================================
   BOOK
========================================= */

.magazine-book {
    width: 850px;
    height: 650px;

    max-width: 90vw;
    max-height: 78vh;

    margin: auto;
}


/* =========================================
   EACH PAGE
========================================= */

.magazine-page {
    background: #fff;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.2);
}


/* =========================================
   PAGE IMAGE
========================================= */

.magazine-page img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: #fff;
}


/* =========================================
   CONTROLS
========================================= */

.magazine-controls {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 99;
}

/* =========================================
   BUTTONS
========================================= */

.page-control {
    min-width: 120px;

    padding: 11px 20px;

    border: none;
    border-radius: 30px;

    background: #fac64b;
    color: #111;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    transition: all 0.3s ease;
}

.page-control:hover {
    background: #fff;
    transform: translateY(-2px);
}

.page-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}


/* =========================================
   PAGE COUNTER
========================================= */

.page-counter {
    min-width: 60px;

    text-align: center;

    color: #fff;

    font-size: 16px;
    font-weight: 600;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .magazine-popup-content {
        width: 96%;
        height: 94vh;
    }

    .magazine-book-wrapper {
        height: calc(100% - 90px);
    }

    .magazine-book {
        width: 90vw;
        height: 70vh;

        max-width: none;
        max-height: none;
    }

    .magazine-close {
        top: -5px;
        right: -3px;

        width: 40px;
        height: 40px;

        font-size: 27px;
    }

    .magazine-controls {
        gap: 10px;
    }

    .page-control {
        min-width: auto;

        padding: 9px 14px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .magazine-book {
        width: 92vw;
        height: 65vh;
    }

    .magazine-controls {
        gap: 8px;
    }

    .page-control {
        padding: 8px 11px;
    }

    .page-counter {
        min-width: 40px;
        font-size: 14px;
    }

}

.loader-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-top-color: #000;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 94px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ee2171;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9999;
}
.back-to-top svg {
    width: 22px;
    height: 22px;
}

.section-header {
    flex-wrap: wrap;
}

@media (min-width: 992px) and (max-width: 1200px) {
.logo {
    width: 215px;
    height: 37px;
}}

.blog-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

.blog-banner-slides {
    position: relative;
    width: 100%;
}

.blog-banner-slide {
    display: none;
    width: 100%;
}

.blog-banner-slide.active {
    display: block;
    animation: blogBannerFade 0.5s ease-in-out;
}

.blog-banner-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}


/* PREVIOUS / NEXT */

.blog-banner-prev,
.blog-banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 25px;
    line-height: 45px;

    cursor: pointer;

    z-index: 10;

    transition: all 0.2s ease;
}

.blog-banner-prev {
    left: 15px;
}

.blog-banner-next {
    right: 15px;
}

.blog-banner-prev:hover,
.blog-banner-next:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* DOTS */

.blog-banner-dots {
    position: absolute;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 10px;

    background: rgba(0, 0, 0, 0.45);

    border-radius: 20px;

    z-index: 10;
}

.blog-banner-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.6);

    cursor: pointer;

    transition: all 0.25s ease;
}

.blog-banner-dot.active {
    width: 24px;

    border-radius: 10px;

    background: #fff;
}


/* FADE */

@keyframes blogBannerFade {

    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .blog-banner-slide img {
        max-height: 400px;
    }

    .blog-banner-prev,
    .blog-banner-next {
        width: 38px;
        height: 38px;

        font-size: 20px;

        line-height: 38px;
    }

    .blog-banner-prev {
        left: 10px;
    }

    .blog-banner-next {
        right: 10px;
    }

    .blog-banner-dots {
        bottom: 10px;
    }

}

/* Magazine image zoom on hover */
.magazine-page {
    overflow: hidden;
}

.magazine-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    transition: transform 0.4s ease;
    transform-origin: center center;
}

/* Zoom only image */
.magazine-page:hover .magazine-image {
    transform: scale(1.3);
}