/* =========================================================
   MODERN LAYOUT — basta-kreditkort.se
   Split out from inline <style> in header.php
========================================================= */

/* Prevent horizontal scrollbar from the 100vw full-bleed hero/quick-stats below */
html {
    overflow-x: hidden;
}
.site-header,
.hero,
.quick-stats {
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.55;
    box-sizing: border-box;
}

.site-header *,
.hero *,
.quick-stats * {
    box-sizing: border-box;
}

.site-header a,
.hero a,
.quick-stats a {
    color: inherit;
    text-decoration: none;
}

/* ---------- HEADER ---------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e7edf2;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    width: min(1320px, calc(100% - 80px));
    max-width: 1320px !important;
    margin: 0 auto;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.header-inner .logo,
.header-inner .logo img {
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -1.2px;
    white-space: nowrap;
    color: #10233f;
}

.header-inner .logo span {
    color: #00a58f;
}

/* wp_nav_menu outputs <ul class="main-nav-list"><li><a> — flex the <li>, not the <a> */
.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav-list {
    display: flex;
    align-items: center;
    gap: 27px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav-list li {
    display: flex;
    align-items: center;
    position: relative;
}

/* Force-show items — the old theme's custom.css may hide the home/current-page
   menu item (e.g. .current_page_item), which would otherwise hide "Nytt Kredittkort" */
.main-nav-list li,
.main-nav-list li a {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
}

.main-nav-list a,
.header-cta {
    color: #172942;
    font-size: 14px;
    font-weight: 600;
}

.main-nav-list a:hover {
    color: #00a58f;
}

/* Dropdown arrow for items with children */
.main-nav-list .menu-item-has-children > a::after {
    content: "⌄";
    margin-left: 6px;
    font-size: 11px;
}

/* Dropdown panel */
.main-nav-list .sub-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 210px;
    background: #f3f9f8;
    border: 1px solid #e0e7ed;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(16,35,63,.08);
    list-style: none;
    margin: 0 !important;
    padding: 8px 0 !important;
    z-index: 1001;
}

.main-nav-list li:hover > .sub-menu,
.main-nav-list li:focus-within > .sub-menu {
    display: block !important;
}

/* Invisible bridge so hover never breaks between the nav item and the panel */
.main-nav-list li:hover > .sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.main-nav-list .sub-menu li {
    display: block !important;
}

.main-nav-list .sub-menu a {
    display: block !important;
    padding: 10px 16px;
    white-space: nowrap;
    font-weight: 600;
}

.main-nav-list .sub-menu a:hover {
    background: #f3f9f8;
}

.header-cta {
    background: #00a58f;
    color: #fff !important;
    padding: 12px 19px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #dce4eb;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 23px;
    color: #10233f;
}

@media (max-width: 760px) {
    .site-header .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 20px 20px;
        border-bottom: 1px solid #e5ebf0;
        box-shadow: 0 10px 25px rgba(0,0,0,.06);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav-list li {
        border-bottom: 1px solid #edf1f4;
    }

    .main-nav-list a {
        padding: 12px 0;
        display: block;
    }

    .main-nav-list .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 0 0 16px;
    }

    .main-nav-list .sub-menu a {
        padding: 10px 0;
        border-bottom: 1px solid #edf1f4;
    }

    .header-cta {
        text-align: center;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .header-inner .logo {
        font-size: 21px;
    }
}


/* ---------- HERO ---------- */
.container {
    width: min(1320px, calc(100% - 80px));
    max-width: 1320px !important;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, #f8fbfd 0%, #eef8f7 100%);
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-inner {
    min-height: 380px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
    padding: 55px 0 65px;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -2.4px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #00a58f;
}

.hero p {
    max-width: 610px;
    color: #55657a;
    font-size: 17px;
    margin-bottom: 27px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
}

.button-primary {
    background: #00a58f;
    color: #fff !important;
}

.button-primary a:hover {
    color: #fff !important;
}

.button-secondary {
    background: #fff;
    border: 1px solid #00a58f;
    color: #008d7b;
}

.hero-cards {
    position: relative;
    min-height: 280px;
}

.hero-card {
    position: absolute;
    width: 260px;
    height: 164px;
    border-radius: 13px;
    box-shadow: 0 20px 35px rgba(16, 35, 63, .18);
    overflow: hidden;
}

.hero-card.okq8 {
    right: 15px;
    top: 5px;
    transform: rotate(5deg);
    background:
        radial-gradient(circle at 80% 30%, rgba(255,180,80,.55), transparent 28%),
        linear-gradient(135deg, #3c120c, #a34b23 55%, #20100d);
}

.hero-card.gold {
    right: 75px;
    top: 80px;
    transform: rotate(2deg);
    background: linear-gradient(135deg, #b58a22, #f1d47c 45%, #a77718);
}

.hero-card.traveller {
    left: 15px;
    bottom: 5px;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #111c25, #2c3c46);
}

.hero-card::after {
    content: "VISA";
    position: absolute;
    right: 15px;
    bottom: 13px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.hero-card.traveller::after {
    content: "●●";
    color: #ffcc32;
}

.hero-card-label {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.hero-card-number {
    position: absolute;
    left: 18px;
    bottom: 38px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1.5px;
}


/* ---------- QUICK STATS ---------- */
.quick-stats {
    background: #fff;
    border-bottom: 1px solid #edf1f4;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.stats {
    display: flex;
    gap: 45px;
    padding: 22px 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: #e8f8f5;
    color: #00a58f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    font-size: 19px;
}

.stat strong {
    display: block;
    font-size: 18px;
}

.stat span {
    color: #778496;
    font-size: 12px;
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero-inner {
        padding: 45px 0 50px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-cards {
        min-height: 235px;
        transform: scale(.9);
        transform-origin: center;
    }

    .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .stat:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 37px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .hero-cards {
        transform: scale(.72);
        margin: -20px -60px;
        width: calc(100% + 120px);
    }
}


/* ---------- WRAPPER FIX (homepage only) ---------- */
/* Old theme's #wrapper adds top spacing AND a constrained max-width meant for
   the legacy boxed layout — strip both only on the homepage, where .hero is
   the first thing inside #wrapper. Without this, every .container on the page
   (offers, article, categories, FAQ) computes its width against #wrapper's
   shrunk width instead of the real viewport, capping them below 1320px
   regardless of any max-width override on .container itself. */
#wrapper:has(> .hero) {
    padding-top: 0 !important;
    margin-top: 0 !important;
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* ---------- FILTERS / COMPARE SECTION ---------- */
.compare-section {
    padding: 45px 0 70px;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.filter {
    position: relative;
}

.filter select {
    appearance: none;
    min-width: 165px;
    height: 44px;
    padding: 0 38px 0 14px;
    border: 1px solid #dbe3ea;
    border-radius: 8px;
    background: #fff;
    color: #25354b;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.filter::after {
    content: "⌄";
    position: absolute;
    right: 13px;
    top: 8px;
    pointer-events: none;
    color: #506075;
}

.results-count {
    display: none;
}


/* ---------- COMPARISON OFFER ---------- */
.offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer {
    background: #fff;
    border: 1px solid #6cc8bf;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(16, 35, 63, .035);
}

.offer-main {
    min-height: 185px;
    display: grid;
    grid-template-columns: 215px 1fr 235px;
    align-items: center;
    gap: 24px;
    padding: 22px 26px;
}

.card-visual {
    width: 190px;
    height: 112px;
    border-radius: 9px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
    background-color: #22303c;
    background-position: center;
}

.card-visual.okq8 {
    background:
        radial-gradient(circle at 80% 40%, rgba(255,190,80,.65), transparent 28%),
        linear-gradient(135deg, #40130b, #8b361c 55%, #1c100c);
}

.card-visual.gold {
    background: linear-gradient(135deg, #b1871f, #efd36e 48%, #aa7b17);
}

.card-visual.traveller {
    background: linear-gradient(135deg, #111c24, #34434b);
}

.offer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.network {
    color: #1267a7;
    font-size: 18px;
    font-weight: 800;
}

.offer-brand h3 {
    font-size: 25px;
    line-height: 1;
}

.offer-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 6px;
}

.offer-stats::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 50%;
    width: 1px;
    background: #aef1fe;
    transform: translateX(-50%);
}

.data-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #526174;
}

.data-row span {
    white-space: nowrap;
}

.data-row strong {
    color: #12243e;
    font-size: 15px;
    white-space: nowrap;
}

.offer-action {
    text-align: center;
}

.ad-label {
    color: #57a81b;
    font-size: 11px;
    margin-bottom: 6px;
}

.order-button {
    width: 80%;
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: #4db65a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.order-button:hover {
    background: #3fa54c;
}

.details-link {
    display: block;
    color: #2582c3;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 9px;
}

.offer-footnote {
    border-top: 1px solid #e4e9ee;
    padding: 9px 18px;
    text-align: center;
    color: #344052;
    font-size: 12px;
    background: #fbfcfd;
}


/* ---------- RESPONSIBLE CREDIT NOTICE ---------- */
.credit-notice {
    margin-top: 18px;
    padding: 14px 18px;
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: #f5faff;
    border: 1px solid #d5e7f2;
    border-radius: 10px;
    color: #334256;
    font-size: 13px;
}

.notice-icon {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #2687c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}


/* ---------- INFORMATION / ARTICLE CONTENT ---------- */
.section {
    padding: 65px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 31px;
    letter-spacing: -.8px;
}

.info-section {
    background: #fff;
}

.info-grid {
    display: block;
}

.info-content {
    width: 100%;
}

.info-content h1,
.info-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 30px 0 15px;
}

.info-content h1:first-child,
.info-content h2:first-child {
    margin-top: 0;
}

.info-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
}

.info-content p {
    color: #687588;
    margin-bottom: 13px;
    line-height: 1.7;
}

.info-content ul,
.info-content ol {
    color: #687588;
    margin: 0 0 13px 20px;
}

.info-box {
    background: #f3f7fa;
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 95px;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #dce5eb;
    color: #536175;
}

.info-item:last-child {
    border-bottom: 0;
}

.info-item strong {
    color: #10233f;
}


/* ---------- RESPONSIVE: compare/offers/info ---------- */
@media (max-width: 1000px) {
    .offer-main {
        grid-template-columns: 180px 1fr 1fr;
    }

    .offer-action {
        grid-column: 2 / 4;
        border-top: 1px solid #e3e8ed;
        padding-top: 15px;
    }
}

@media (max-width: 760px) {
    .filter-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter select {
        width: 100%;
        min-width: 0;
    }

    .offer-main {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .card-visual {
        width: 190px;
        height: 112px;
        margin: 0 auto;
    }

    .offer-brand {
        justify-content: center;
    }

    .offer-stats {
        grid-template-columns: 1fr;
        row-gap: 4px;
        column-gap: 0;
    }

    .offer-stats::before {
        display: none;
    }

    .offer-action {
        grid-column: auto;
        border-top: 0;
        padding-top: 0;
    }

    .offer-footnote {
        text-align: left;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- CATEGORIES ---------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.category-card {
    background: #fff;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 22px;
    transition: .2s ease;
    display: block;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: #00a58f;
    box-shadow: 0 10px 25px rgba(16,35,63,.07);
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e7f8f4;
    color: #00a58f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.category-card h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.category-card p {
    color: #69778a;
    font-size: 13px;
    margin-bottom: 13px;
}

.category-link {
    color: #1787c4;
    font-size: 13px;
    font-weight: 750;
}


/* ---------- FAQ ---------- */
.faq-list {
    max-width: 850px;
    margin: auto;
}

.faq {
    background: #fff;
    border: 1px solid #e0e7ed;
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    font-weight: 700;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    font-size: 20px;
    color: #00a58f;
}

.faq[open] summary::after {
    content: "−";
}

.faq-content {
    padding: 0 20px 18px;
    color: #687588;
    font-size: 14px;
}


/* ---------- CTA ---------- */
.cta {
    background: #10233f;
    color: #fff;
    border-radius: 18px;
    padding: 50px 25px;
    text-align: center;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #fff;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 22px;
    color: #c9d3df;
}

.cta .button-primary {
    display: inline-flex;
}


/* ---------- RESPONSIVE: categories/faq/cta ---------- */
@media (max-width: 1000px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 27px;
    }
}


/* ---------- FOOTER ---------- */
.footer {
    background: #0c1c31;
    color: #fff;
    padding: 55px 0 22px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 38px;
}

.footer .logo {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -1px;
    color: #fff;
}

.footer .logo span {
    color: #4fd6c4;
}

.footer-grid > div:first-child p {
    max-width: 340px;
    color: #9eacbe;
    font-size: 13px;
}

.footer h3 {
    font-size: 15px;
    margin-bottom: 13px;
    color: #fff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-grid a {
    color: #aeb9c8;
    font-size: 13px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 19px;
    color: #8593a7;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    white-space: nowrap;
}

.footer-bottom a {
    color: #b7c2d1;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-network-links {
    color: #71809a;
    font-size: 11.5px;
    line-height: 1.7;
}

.footer-network-links a {
    color: #8fa2b8;
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ---------- STICKY NEWS (unrelated to redesign, minimal safety styling only) ---------- */
.sticky-news-main-div {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e0e7ed;
    box-shadow: 0 -4px 15px rgba(16,35,63,.08);
}

.sticky-news-main-div #h-s {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
    color: #536175;
}

/* ---------- ARCHIVE PAGE (category pages) ---------- */
.archive-offers {
    padding: 40px 0;
}

.archive-offers .offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.archive-heading {
    font-size: 22px;
    margin-bottom: 18px;
}

.archive-card-intro {
    font-size: 14px;
    color: #344052;
    margin: 4px 0 -4px;
}

.archive-fallback-note {
    text-align: center;
    font-style: italic;
    color: #536175;
    margin-bottom: 20px;
}

.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255,255,255,.92);
    color: #10233f;
    font-size: 10px;
    font-weight: 750;
    padding: 4px 8px;
    border-radius: 5px;
}

/* Compact 3-item stat row (no paired right column, so no divider line) */
.offer-stats-compact {
    grid-template-columns: repeat(3, 1fr);
}

.offer-stats-compact::before {
    display: none;
}

@media (max-width: 760px) {
    .offer-stats-compact {
        grid-template-columns: 1fr;
    }
}

/* 1. Left-align the page title (currently centered via the old theme's
      inline align="center" attribute — this overrides it) */
.ma_2 {
    text-align: left;
}

.ma_2 h1,
.ma_2 p {
    text-align: left;
}


/* 2. Same #wrapper width bug as the homepage had, but this time on EVERY
      page, not just the homepage — the old theme's #wrapper caps its width,
      so any .container inside it (like .archive-offers) computes its own
      width against that shrunk box instead of the real viewport.

      Find your existing rule that looks like this:

          #wrapper:has(> .hero) {
              padding-top: 0 !important;
              margin-top: 0 !important;
              max-width: none !important;
              width: 100% !important;
              padding-left: 0 !important;
              padding-right: 0 !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
          }

      Split it into two rules — keep the top-padding removal homepage-only,
      but make the width fix apply everywhere: */

#wrapper {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#wrapper:has(> .hero) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Align the .ma_1/.ma_2 title block with the same container width used by
   the header, hero, and offer cards, so its left edge matches the logo's */
.ma_1 {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0;
}

.ma_2 {
    width: auto;
    text-align: left;
    padding-top: 25px;
    padding-left: 15px;
}

.ma_2 h1,
.ma_2 p {
    text-align: left;
}

.archive-content {
    padding: 30px 0 10px;
}

.archive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e4e9ee;
    font-size: 13px;
    color: #536175;
}

.archive-meta i {
    color: #00a58f;
    margin-right: 6px;
}

.archive-content .info-content h2 {
    margin-top: 0;
}

.archive-content .info-content hr {
    border: none;
    border-top: 2px solid #e4e9ee;
    margin: 10px 0 20px;
    width: 100%;
}

.archive-offers,
.archive-content {
    background: #fff;
}