@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Theme colors (--color-primary/--color-secondary/--color-button-bg/--color-button-text)
   are declared per-site in base.html's inline <style> block, via site_color() in
   app/services/theming.py (Site column, falling back to its SiteTheme column, falling
   back to a hardcoded default here of the real thetraveldealfinder.com brand palette:
   cyan/teal #00b3e6 (every CTA/button/link accent in the reference SCSS) and near-black
   #1a1a1a (the logo wordmark + all borders/body copy ink). No :root block here - this
   file loads after that inline <style> in <head>, so a same-specificity :root rule here
   would always win the cascade and silently override every dynamic value, regardless of
   what's set in the DB. */

/* -------------------------------------------------------------------- */
/* Reset (ported from enginex-thetraveldealfinder.com assets/css/base/_thetraveldealfinder.scss) */
/* -------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    font-weight: 400;
}
body {
    line-height: 1;
    font-family: "Marcellus", serif;
    overflow-x: hidden;
    color: #1a1a1a;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}

.content-wrapper {
    max-width: 1776px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}
@media (max-width: 1535px) {
    .content-wrapper { max-width: 1186px; }
}
@media (max-width: 1175px) {
    .content-wrapper { width: 95%; }
}
@media (max-width: 920px) {
    .content-wrapper { width: 97%; }
}
@media (max-width: 768px) {
    .content-wrapper { width: 90%; }
}

article figure { overflow: hidden; }
article figure img { transition: all 0.2s ease; }
article:hover figure img { transform: scale(1.1); }

.read-more-btn {
    display: inline-block;
    border: 2px solid var(--color-secondary, #1a1a1a);
    width: fit-content;
    margin: auto;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 35px;
    margin-top: 20px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 1535px) {
    .read-more-btn { font-size: 14px; padding: 12px 20px; }
}
.plus {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    text-align: center;
}

/* -------------------------------------------------------------------- */
/* Header */
/* -------------------------------------------------------------------- */
.header {
    position: relative;
    margin: auto;
    z-index: 3;
}
@media (max-width: 1535px) {
    .header { width: 95%; padding: 20px 0; }
}
.header img { width: 100%; display: block; }
.header .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .hamburger {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary, #1a1a1a);
    border-radius: 5px;
    display: block;
}
.hero-sec .header .hamburger span { background-color: #fff; }
.header-logo {
    width: 150px;
    margin: auto;
    padding: 25px;
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
@media (max-width: 1535px) {
    .header-logo { width: 105px; margin-top: -25px; padding: 15px; }
}
@media (max-width: 768px) {
    .header-logo { width: 130px; padding: 15px; }
}
.header-logo img { width: 100%; display: block; }
.header .search-icon {
    width: 33px;
    cursor: pointer;
    display: block;
}
@media (max-width: 1535px) {
    .header .search-icon { width: 25px; }
}
.header .search-icon img { width: 100%; display: block; }

/* inner (non-hero) pages: plain header bar, functional search form */
.header-inner { background-color: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); }
.header-inner .header-form {
    position: relative;
}
.header-inner .header-form form {
    position: relative;
    display: flex;
    align-items: center;
}
.header-inner .header-form input {
    display: none;
    width: 240px;
    max-width: 60vw;
    height: 42px;
    border: 2px solid var(--color-primary, #00b3e6);
    border-radius: 25px;
    padding: 0 50px 0 20px;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    color: #333;
    background: #fff;
}
.header-inner .header-form input.active { display: block; }
@media (max-width: 765px) {
    .header-inner .header-form input { width: 160px; }
}
.header-inner .header-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-button-bg, #00b3e6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-inner .header-form button img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.header-content {
    color: white;
    background-color: var(--color-secondary, #1a1a1a);
    padding: 60px 0;
    text-align: center;
}
@media (max-width: 1535px) {
    .header-content { padding: 40px 0; }
}
.header-content .purpose {
    font-size: 27px;
    display: block;
    text-align: center;
    margin-top: 10px;
}
@media (max-width: 1535px) {
    .header-content .purpose { font-size: 22px; }
}
@media (max-width: 920px) {
    .header-content .purpose { font-size: 18px; }
}
@media (max-width: 765px) {
    .header-content .purpose { font-size: 20px; width: 80%; margin: 10px auto; line-height: 1.3; }
}
.header-content .heading {
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    display: block;
    font-size: 55px;
    text-align: center;
}
@media (max-width: 1535px) {
    .header-content .heading { font-size: 42px; }
}
@media (max-width: 920px) {
    .header-content .heading { font-size: 36px; }
}
@media (max-width: 765px) {
    .header-content .heading { width: 90%; margin: 10px auto; }
}

/* -------------------------------------------------------------------- */
/* Hero (full-viewport photo, dark overlay, floating logo pill) */
/* -------------------------------------------------------------------- */
.hero-sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--color-secondary, #1a1a1a);
    height: 100vh;
    position: relative;
}
.hero-sec:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 0;
}
.hero-sec .header, .hero-sec .content-wrapper { position: relative; z-index: 2; }
@media (max-width: 925px) {
    .hero-sec { height: 65vh; }
}
@media (max-width: 765px) {
    .hero-sec { height: 100vh; background-position: calc(75% - 20%); }
}
.hero-sec .content-wrapper {
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 765px) {
    .hero-sec .content-wrapper { width: 100%; height: 70%; }
}
.hero-sec h1 {
    text-align: center;
    font-size: 58px;
    width: 70%;
    margin: auto;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    padding: 40px 20px 60px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}
@media (max-width: 1535px) {
    .hero-sec h1 { font-size: 40px; width: 80%; line-height: 1.25; }
}
@media (max-width: 768px) {
    .hero-sec h1 { font-size: 32px; width: 88%; line-height: 1.3; }
}
.hero-sec .know-more {
    display: block;
    margin: auto;
    width: fit-content;
    background-color: var(--color-button-bg, #00b3e6);
    color: var(--color-button-text, #fff);
    padding: 22px 30px;
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    margin-top: -40px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    border-bottom-right-radius: 45px;
    border-top-left-radius: 45px;
}
@media (max-width: 1535px) {
    .hero-sec .know-more { font-size: 16px; padding: 15px 25px; font-weight: 600; margin-top: -30px; }
}

/* -------------------------------------------------------------------- */
/* Below-hero grid (also reused for "Read Next" on article pages) */
/* -------------------------------------------------------------------- */
.below-hero-sec {
    margin-top: 50px;
    min-height: 40vh;
    padding-bottom: 20px;
}
.below-hero-sec .section-heading {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}
.below-hero-sec .list-articles {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 925px) {
    .below-hero-sec .list-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .below-hero-sec .list-articles { grid-template-columns: repeat(1, 1fr); }
}
.below-hero-sec article {
    transition: all 0.4s ease;
    padding-bottom: 10px;
}
.below-hero-sec article figure {
    width: 100%;
    height: 320px;
}
@media (max-width: 1535px) {
    .below-hero-sec article figure { height: 240px; }
}
.below-hero-sec article figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.below-hero-sec article h5 {
    font-size: 24px;
    width: 90%;
    margin: auto;
    text-align: center;
    line-height: 1.3;
    margin-top: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 1535px) {
    .below-hero-sec article h5 { font-size: 18px; }
}
.below-hero-sec article .read-more-btn {
    display: block;
    margin: auto;
    font-size: 15px;
    padding: 12px 25px;
    margin-top: 15px;
}
.below-hero-sec article:hover {
    background-color: #eaf9ff;
    transform: translateY(-8px);
}

/* -------------------------------------------------------------------- */
/* Spotlight (also reused, with .trending-sec, for the second big feature) */
/* -------------------------------------------------------------------- */
.spotlight-sec {
    min-height: 50vh;
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(to right, #eaf9ff 0%, #eaf9ff 10%, transparent 10%, transparent 70%, #f4f4ef 70%, #f4f4ef 100%);
}
@media (max-width: 925px) {
    .spotlight-sec { margin-top: 40px; min-height: 35vh; }
}
.spotlight-sec.trending-sec {
    background: linear-gradient(to right, #f4f4ef 0%, #f4f4ef 30%, transparent 30%, transparent 90%, #eaf9ff 90%, #eaf9ff 100%);
}
.spotlight-sec .single-article {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .spotlight-sec .single-article { flex-direction: column-reverse; }
}
.spotlight-sec .content { flex: 0 1 50%; }
.spotlight-sec .content figure {
    width: 60%;
    margin: 0 0 0 70px;
}
@media (max-width: 1535px) {
    .spotlight-sec .content figure { width: 55%; margin-left: 60px; }
}
@media (max-width: 768px) {
    .spotlight-sec .content figure { width: 90%; margin: 0 auto; }
}
.spotlight-sec .content figure img { width: 100%; height: 100%; object-fit: contain; }
.spotlight-sec .content h2 {
    font-size: 42px;
    text-align: center;
    line-height: 1.15;
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
}
.spotlight-sec .content h2 span { color: var(--color-primary, #00b3e6); }
@media (max-width: 1535px) {
    .spotlight-sec .content h2 { font-size: 32px; }
}
.spotlight-sec .content h3 {
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
    width: 85%;
    margin: auto;
    margin-top: 30px;
}
@media (max-width: 1535px) {
    .spotlight-sec .content h3 { width: 80%; font-size: 24px; }
}
@media (max-width: 768px) {
    .spotlight-sec .content h3 { font-size: 26px; width: 100%; }
}
.spotlight-sec .content .read-more-btn {
    display: block;
    margin: 30px auto 0;
}
@media (max-width: 1535px) {
    .spotlight-sec .content .read-more-btn { font-size: 14px; padding: 12px 20px; }
}
.spotlight-sec .right-img {
    flex: 0 1 37%;
    height: 620px;
    background-size: cover;
    background-position: center;
    border-radius: 45%;
    position: relative;
}
@media (max-width: 1535px) {
    .spotlight-sec .right-img { height: 480px; }
}
@media (max-width: 925px) {
    .spotlight-sec .right-img { height: 380px; }
}
@media (max-width: 768px) {
    .spotlight-sec .right-img { flex: unset; width: 100%; border-radius: 30%; }
}
.spotlight-sec .right-img img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    position: absolute;
}
@media (max-width: 1535px) {
    .spotlight-sec .right-img img { width: 80px; height: 80px; }
}
.spotlight-sec .right-img .image2 { right: 20px; top: 0; }
.spotlight-sec .right-img .image1 { left: 0; bottom: 0; }

/* -------------------------------------------------------------------- */
/* Middle articles grid (bordered figure boxes) */
/* -------------------------------------------------------------------- */
.middle-articles-sec { margin-top: 80px; padding-bottom: 20px; }
.middle-articles-sec .list-articles {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 925px) {
    .middle-articles-sec .list-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .middle-articles-sec .list-articles { grid-template-columns: repeat(1, 1fr); }
}
.middle-articles-sec article figure {
    height: 300px;
    overflow: visible;
    border: 2px solid var(--color-secondary, #1a1a1a);
    padding: 18px;
    display: flex;
}
@media (max-width: 1535px) {
    .middle-articles-sec article figure { height: 220px; padding: 12px; }
}
.middle-articles-sec article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.middle-articles-sec article h5 {
    margin-top: 30px;
    font-size: 22px;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 1535px) {
    .middle-articles-sec article h5 { font-size: 18px; margin-top: 20px; }
}
.middle-articles-sec article .read-more-btn {
    display: block;
    margin: 20px auto 0;
    font-size: 14px;
    padding: 12px 20px;
}
.middle-articles-sec article:nth-child(1) .read-more-btn { background-color: #f0f7ff; }
.middle-articles-sec article:nth-child(2) .read-more-btn { background-color: #eaf9ff; }
.middle-articles-sec article:nth-child(3) .read-more-btn { background-color: #f4f4ef; }
.middle-articles-sec article:nth-child(4) .read-more-btn { background-color: #ffebdf; }

/* -------------------------------------------------------------------- */
/* Home form (bottom search prompt) */
/* -------------------------------------------------------------------- */
.home-form-sec {
    padding: 100px 0 50px;
    text-align: center;
}
.home-form-sec h2 {
    font-size: 31px;
    color: var(--color-primary, #00b3e6);
}
@media (max-width: 1535px) {
    .home-form-sec h2 { font-size: 26px; }
}
@media (max-width: 765px) {
    .home-form-sec h2 { font-size: 19px; }
}
.home-form-sec form {
    width: 60%;
    margin: 20px auto 0;
    border: 1px solid var(--color-secondary, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 10px;
}
@media (max-width: 765px) {
    .home-form-sec form { width: 90%; }
}
.home-form-sec form input {
    display: block;
    width: 95%;
    outline: none;
    border: none;
    font-size: 15px;
    font-family: "Marcellus", serif;
}
.home-form-sec form button {
    background: none;
    outline: none;
    border: none;
    display: block;
    cursor: pointer;
}
.home-form-sec form button img { width: 28px; }
@media (max-width: 1535px) {
    .home-form-sec form button img { width: 22px; }
}
.home-form-sec span {
    display: block;
    width: 65%;
    margin: 80px auto 0;
    text-align: center;
    font-size: 21px;
    line-height: 1.3;
}
@media (max-width: 1535px) {
    .home-form-sec span { font-size: 18px; margin-top: 40px; width: 80%; }
}
.home-form-sec span a { display: inline-block; font-weight: 700; color: var(--color-primary, #00b3e6); }
.home-form-sec .line {
    width: 48%;
    margin: 30px auto 0;
    border-bottom: 2px solid var(--color-secondary, #1a1a1a);
}

/* -------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------- */
.footer-section {
    background-color: var(--color-primary, #00b3e6);
    padding: 30px 0 25px;
}
.footer-section .footer-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-section .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
}
.footer-section .footer-links a {
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
}
.footer-section .footer-links a:hover { color: var(--color-secondary, #1a1a1a); }
.footer-section .footer-logo {
    display: none;
}
@media (max-width: 675px) {
    .footer-section .footer-logo {
        display: block;
        background-color: #fff;
        padding: 10px 20px;
        border-radius: 20px;
        width: 180px;
    }
    .footer-section .footer-logo img { width: 100%; display: block; }
}
.footer-section .footer-copy {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}
.footer-section .footer-copy a { color: #fff; font-weight: 600; text-decoration: underline; }

/* -------------------------------------------------------------------- */
/* Single article */
/* -------------------------------------------------------------------- */
.article-sec-content { margin-top: 30px; }
.article-sec-content .content-wrapper { width: 60%; margin: auto; }
@media (max-width: 765px) {
    .article-sec-content .content-wrapper { width: 95%; }
}
.article-sec-content .title-heading {
    font-size: 50px;
    margin: auto;
    font-weight: 700;
    width: 90%;
    text-align: center;
    line-height: 1.2;
    color: var(--color-secondary, #1a1a1a);
}
@media (max-width: 1535px) {
    .article-sec-content .title-heading { font-size: 38px; line-height: 1.25; }
}
@media (max-width: 765px) {
    .article-sec-content .title-heading { font-size: 32px; width: 100%; }
}
.article-sec-content .article-author {
    text-align: center;
    color: #6b6b6b;
    font-size: 14px;
    margin-top: 15px;
    font-family: "Montserrat", sans-serif;
}
.article-sec-content figure { margin: 30px auto 0; }
@media (max-width: 765px) {
    .article-sec-content figure { height: 320px; width: 100%; }
}
.article-sec-content figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 765px) {
    .article-sec-content figure img { border-radius: 20px; }
}
.article-sec-content .article-body {
    font-size: 15px;
    color: #444;
}
.article-sec-content .article-body p {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 30px;
}
@media (max-width: 1535px) {
    .article-sec-content .article-body p { font-size: 17px; margin-top: 25px; line-height: 1.6; }
}
.article-sec-content .article-body h2,
.article-sec-content .article-body h3,
.article-sec-content .article-body h4 {
    font-size: 28px;
    line-height: 1.3;
    margin-top: 35px;
    font-weight: 700;
    color: var(--color-secondary, #1a1a1a);
}
.article-sec-content .article-body h3 { font-size: 24px; }
.article-sec-content .article-body h4 { font-size: 20px; }
.article-sec-content .article-body ul {
    list-style: disc;
    list-style-position: inside;
    margin: 10px 0;
}
.article-sec-content .article-body li { margin: 10px 0 10px 20px; line-height: 1.3; }
.article-sec-content .article-body ol { list-style-type: decimal; }
.article-sec-content .article-body strong { font-weight: 600; }
.article-sec-content .article-body a {
    color: var(--color-primary, #00b3e6);
    text-decoration: underline;
}

/* "Read Next" heading + "More Categories" (article detail bottom) */
.read-next-sec { background-color: #f9fbfc; padding-bottom: 60px; }
.home-categories-sec {
    background-color: var(--color-secondary, #1a1a1a);
    padding: 50px 0;
    text-align: center;
}
.home-categories-sec .section-heading {
    color: white;
    font-size: 26px;
    margin-bottom: 25px;
}
.home-categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.home-categories-item {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--color-primary, #00b3e6);
    border-radius: 30px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.home-categories-item:hover {
    background-color: var(--color-primary, #00b3e6);
    color: var(--color-secondary, #1a1a1a);
}

/* -------------------------------------------------------------------- */
/* Articles listing page */
/* -------------------------------------------------------------------- */
.articles-listing-header {
    color: white;
    background-color: var(--color-secondary, #1a1a1a);
    padding: 60px 0;
    text-align: center;
}
.articles-listing-header .heading { font-size: 48px; font-weight: 700; }
@media (max-width: 1535px) { .articles-listing-header .heading { font-size: 36px; } }
.articles-listing-header .purpose { font-size: 20px; display: block; margin-top: 10px; }
.articles-listing-sec { margin-top: 0; padding: 60px 0; background: none; }
.articles-listing-sec .list-articles.articles-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
    .articles-listing-sec .list-articles.articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .articles-listing-sec .list-articles.articles-grid { grid-template-columns: 1fr; }
}
.article-card a { display: block; }
.article-card figure { height: 260px; border: none; padding: 0; }
.article-card figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card h5 { margin-top: 20px; font-size: 20px; }
.article-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0;
    color: #666;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.article-card .read-more-btn { display: inline-block; margin: 0; font-size: 13px; padding: 10px 20px; }
.no-articles-msg { text-align: center; padding: 40px 0; color: #666; }

.pagination-articles {
    text-align: center;
    margin: 40px 0 60px;
}
.pagination-articles a {
    display: inline-block;
    color: var(--color-secondary, #1a1a1a);
    border: 1px solid #e0e0e0;
    margin: 0 6px;
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}
.pagination-articles a.active,
.pagination-articles a:hover {
    background-color: var(--color-button-bg, #00b3e6);
    border-color: var(--color-button-bg, #00b3e6);
    color: #fff;
}

/* -------------------------------------------------------------------- */
/* Search results (query stub page) */
/* -------------------------------------------------------------------- */
.search-page-sec { padding: 60px 0; min-height: 50vh; }
.no-results-msg { text-align: center; color: #666; font-size: 16px; }
.shopping-results-list .search-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    margin-bottom: 12px;
}
.shopping-results-list .search-list-item__name a { color: var(--color-primary, #00b3e6); font-size: 18px; font-weight: 600; }
.shopping-results-list .search-list-item__descr { color: #666; font-size: 14px; margin-top: 6px; }
.shopping-results-list .search-list-item__retailer a { color: #3ca3fa; font-size: 13px; }
.shopping-results-list .read-more-btn {
    flex-shrink: 0;
    background-color: var(--color-button-bg, #00b3e6);
    color: var(--color-button-text, #fff);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* -------------------------------------------------------------------- */
/* Yahoo top5 ad feed (hotspots-ads) */
/* -------------------------------------------------------------------- */
.hotspots-ads {
    margin-top: 30px;
    min-height: 78vh;
    padding-bottom: 60px;
}
.hotspots-ads .sponsored {
    font-size: 15px;
    margin-top: 25px;
    display: block;
    color: #666;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 765px) {
    .hotspots-ads .sponsored { margin-top: 10px; }
}
.hotspots-ads .list-ads { margin-top: 20px; }
@media (max-width: 765px) {
    .hotspots-ads .list-ads { margin-top: 10px; }
}
.hotspots-ads .list-ads article {
    background-color: #f8f8f8;
    padding: 23px 45px 20px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;
}
@media (max-width: 765px) {
    .hotspots-ads .list-ads article { flex-direction: column; align-items: start; padding: 10px; }
}
.hotspots-ads .list-ads .left-content { width: 85%; }
@media (max-width: 765px) {
    .hotspots-ads .list-ads .left-content { width: 100%; }
}
.hotspots-ads .list-ads .left-content h3 { font-size: 20px; color: #010101; font-weight: 700; font-family: "Montserrat", sans-serif; }
.hotspots-ads .list-ads .left-content a { margin: 10px 0; color: #999; font-weight: 300; font-size: 14px; display: block; }
.hotspots-ads .list-ads .left-content p { color: #999; font-size: 14px; font-weight: 300; line-height: 1.5; }
.hotspots-ads .list-ads .right-content { flex-shrink: 0; }
@media (max-width: 765px) {
    .hotspots-ads .list-ads .right-content { margin-top: 20px; width: 100%; }
}
.hotspots-ads .list-ads .right-content a {
    background-color: var(--color-button-bg, #00b3e6);
    width: 110px;
    padding: 10px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-button-bg, #00b3e6);
    font-weight: 600;
}
@media (max-width: 765px) {
    .hotspots-ads .list-ads .right-content a { width: 100%; }
}
.hotspots-ads .list-ads .right-content span { font-size: 18px; color: var(--color-button-text, #fff); display: block; font-family: "Montserrat", sans-serif; }
.hotspots-ads .list-ads article:hover { background: none; }
.hotspots-ads .list-ads article:hover .right-content a { background: none; }
.hotspots-ads .list-ads article:hover .right-content a span { color: var(--color-primary, #00b3e6); }
.hotspots-ads .no-ads-msg { padding: 30px 0; color: #666; }

/* -------------------------------------------------------------------- */
/* Static content pages (about / contact / terms / privacy / cookies) */
/* -------------------------------------------------------------------- */
.about-wrapper, .contact-wrapper, .terms, .privacy, .cookie {
    min-height: 60vh;
    margin-top: 20px;
    padding: 40px 0;
}
.about-wrapper .about-subheader,
.contact-wrapper .about-subheader {
    color: var(--color-primary, #00b3e6);
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.about-wrapper h1, .contact-wrapper h1, .terms h1, .privacy h1, .cookie h1 {
    font-size: 35px;
    margin: 15px 0 20px;
    font-weight: 700;
}
.contact-wrapper h2, .terms h2, .privacy h2, .cookie h2 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 8px;
    font-weight: 600;
}
.terms h3, .privacy h3, .cookie h3 { font-size: 20px; margin: 20px 0 10px; font-weight: 600; }
.about-wrapper p, .contact-wrapper p, .terms p, .privacy p, .cookie p {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.7;
}
.about-wrapper a, .contact-wrapper a, .terms a, .privacy a, .cookie a {
    color: var(--color-primary, #00b3e6);
    text-decoration: underline;
}
.about-wrapper strong, .contact-wrapper strong, .terms strong, .privacy strong, .cookie strong { font-weight: 600; }
.terms ul, .privacy ul, .cookie ul {
    line-height: 1.5;
    margin: 15px 0 15px 20px;
}
.terms ul li, .privacy ul li, .cookie ul li { list-style-type: disc; margin-top: 8px; }
.contact-subheader { line-height: 1.6; }
.contact-btn, .contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: var(--color-button-bg, #00b3e6);
    color: var(--color-button-text, #fff) !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
.contact-btn:hover, .contact-button:hover { background-color: var(--color-secondary, #1a1a1a); color: #fff !important; }

/* -------------------------------------------------------------------- */
/* Mobile menu */
/* -------------------------------------------------------------------- */
.mobile-menu {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: 0;
}
.mobile-menu.active { display: block; }
.mobile-menu-wrapper {
    background: #fff;
    width: 100%;
    max-width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px 25px 0;
}
.mobile-menu-close {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 15px;
    right: 15px;
    color: var(--color-secondary, #1a1a1a);
    font-size: 22px;
}
.mobile-menu-items { display: flex; flex-direction: column; }
.mobile-menu-items a {
    font-size: 16px;
    color: var(--color-secondary, #1a1a1a);
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}
.mobile-menu-items a:hover { color: var(--color-primary, #00b3e6); }
