/* ============================================
   SLIMRCHAT CONTENT STYLES
   Page widgets, cards, sections
   ============================================ */

/* ============================================
   HOMEPAGE BODY STYLES
   ============================================ */
body.is-homepage {
    background-color: #e8f4f6;
}

/* Override any theme containers on homepage */
body.is-homepage .wrap,
body.is-homepage .container,
body.is-homepage .pageWrap,
body.is-homepage .bigContainer,
body.is-homepage .flex,
body.is-homepage .main {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Prevent horizontal scroll */
body.is-homepage {
    overflow-x: hidden;
}

/* Reset any theme grid/flex on homepage content */
body.is-homepage .widget-container * {
    box-sizing: border-box;
}

/* ============================================
   COMMON CONTAINER
   ============================================ */
.widget-container {
    padding: 40px 0;
    max-width: calc(100% - 230px);
    margin: 0 auto;
    box-sizing: border-box;
}

.widget-container + .widget-container {
    padding-top: 20px;
}

/* Empty column placeholder for 4-col grid alignment */
.empty-column {
    /* intentionally empty to maintain grid structure */
}

/* ============================================
   SECTION HEADERS - INTER BOLD
   ============================================ */
.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #004559;
    margin: 0;
}

.section-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header-flex h2 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #004559;
    margin: 0;
}

/* ============================================
   SEE MORE BUTTONS
   ============================================ */
.see-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 4px 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    transform: scale(0.9);
    transform-origin: right center;
}

.see-more-button:hover { opacity: 0.85; }

.see-more-button .arrow-circle {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-more-button .arrow-circle svg { width: 12px; height: 12px; }

/* ============================================
   FEATURED POSTS
   ============================================ */
.forum-posts-widget {
    display: grid !important;
    grid-template-columns: 1fr 420px !important;
    gap: 20px !important;
    align-items: stretch !important;
}

.featured-post {
    position: relative;
    border-radius: 10px;
    overflow: hidden !important;
    aspect-ratio: 16 / 10;
    min-width: 0;
    max-width: 100%;
}

.featured-post a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-post-image,
.featured-post img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.featured-post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.featured-post-tag {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-post-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 46px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.latest-posts {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    width: 420px;
    min-width: 420px;
    max-width: 420px;
}

.latest-posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.small-post-card {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
    padding: 7px;
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.small-post-card:hover { opacity: 0.85; }

.small-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 8px 8px 10px;
}

.small-post-tag {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    transform: scale(0.85);
    transform-origin: left center;
}

.small-post-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #004559;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.small-post-date {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.8);
    transform-origin: left center;
}

.small-post-image {
    width: 120px;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

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

/* ============================================
   PICKS WIDGET
   ============================================ */
.picks-widget {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    align-items: stretch;
}

.advert-space {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.advert-label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #888;
    transform: scale(0.85);
    flex-shrink: 0;
}

.advert-placeholder {
    width: 100%;
    flex: 1;
    min-height: 400px;
    background-color: #b8cacd;
    border-radius: 10px;
}

.picks-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.picks-posts {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 20px;
    align-items: stretch;
}

.picks-featured {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.picks-featured a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.picks-featured-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.picks-featured-content {
    padding: 18px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.picks-featured-tag {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    transform: scale(0.85);
    transform-origin: left center;
}

.picks-featured-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #004559;
    line-height: 1.15;
    margin: 0;
}

.picks-featured-date {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.8);
    transform-origin: left center;
    margin-top: auto;
}

.picks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.picks-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.picks-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.picks-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.picks-card-content {
    padding: 12px 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.picks-card-tag {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    transform: scale(0.85);
    transform-origin: left center;
}

.picks-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.picks-card-date {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.8);
    transform-origin: left center;
    margin-top: auto;
}

.picks-card:hover, .picks-featured:hover { opacity: 0.9; }

/* ============================================
   REAL STORIES
   ============================================ */
.real-stories-widget {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.story-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.story-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.story-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.story-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    padding-top: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.story-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.story-card:hover { opacity: 0.9; }

.advert-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.advert-horizontal .advert-placeholder {
    flex: 1;
    max-width: 728px;
    height: 90px;
}

.advert-horizontal .advert-label {
    writing-mode: vertical-rl;
}

/* ============================================
   POST CARDS
   ============================================ */
.category-section .section-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 280px;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.category-section .section-header-grid h2 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #004559;
    margin: 0;
}

.category-section .section-header-grid .see-more-button {
    grid-column: 3;
    justify-self: end;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 280px;
    gap: 20px;
    align-items: stretch;
}

.category-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.category-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.post-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.post-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.post-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.post-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.post-card-tag {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    transform: scale(0.85);
    transform-origin: left center;
}

.post-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-date {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.8);
    transform-origin: left center;
    margin-top: auto;
}

.post-card:hover { opacity: 0.9; }

.advert-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.advert-column .advert-placeholder {
    width: 100%;
    height: 250px;
}

.divider-wrapper { grid-column: 1 / 4; padding-top: 20px; }
.divider-wrapper-full { grid-column: 1 / -1; padding-top: 20px; }
.divider-line { width: 100%; height: 1px; background-color: #c5d8dc; margin-bottom: 10px; }

/* ============================================
   LATEST CHATS
   ============================================ */
.latest-chats-widget {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.chat-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.chat-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    padding: 20px;
}

.chat-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #004559;
    line-height: 1.3;
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-card-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.85);
    transform-origin: left center;
}

.chat-card:hover { opacity: 0.9; }

/* ============================================
   CTA BANNERS
   ============================================ */
.cta-banner {
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cta-banner-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1.5px solid #004559;
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 6px 6px 12px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-outline:hover { background: rgba(0, 69, 89, 0.08); }

.cta-button-outline .arrow-circle {
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-outline .arrow-circle svg { width: 14px; height: 14px; }

/* Reduce gap after CTA banner */
.cta-banner + .section-header-flex,
.widget-container:has(.cta-banner) + .widget-container {
    padding-top: 25px;
}

.cta-banner-dark {
    background: #004559;
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-banner-dark .cta-banner-title {
    color: #fff;
    text-align: left;
}

.cta-banner-dark .cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cta-button-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 8px 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-gradient:hover { opacity: 0.9; }

.cta-button-gradient .arrow-circle {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-gradient .arrow-circle svg { width: 12px; height: 12px; }

/* ============================================
   CATEGORY PAGE HEADER
   ============================================ */
.category-page-header {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 40px 30px;
}

.category-page-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #004559;
    line-height: 1.1;
    margin: 0 0 20px;
}

.category-page-intro {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 588px;
    margin-bottom: 25px;
}

.category-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 10px 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-button:hover { opacity: 0.9; }

.category-button .arrow-circle {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-button .arrow-circle svg { width: 12px; height: 12px; }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-section {
    background-color: #e8f4f6;
    padding: 40px 0;
}

.team-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.team-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.team-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

.team-card-content {
    padding: 15px;
    text-align: left;
}

.team-card-name {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #004559;
    margin: 0 0 5px;
}

.team-card-role {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
}

.team-card:hover { opacity: 0.9; }

/* ============================================
   BLOG POST STYLES
   ============================================ */
body.single-post {
    overflow-x: hidden;
}

.blog-wrapper {
    background: #fff;
}

.post-bottom-sections {
    background-color: #e8f4f6;
}

.blog-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.article-header {
    margin-bottom: 40px;
}

.article-category {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.article-category:hover {
    opacity: 0.8;
}

.article-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #004559;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.article-meta {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    color: #888;
    margin-bottom: 25px;
}

.article-meta a {
    color: #004559;
    text-decoration: underline;
    font-weight: 700;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 0.85;
}

.share-button svg {
    width: 16px;
    height: 16px;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.article-content > p:first-child {
    font-size: 17px;
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #004559;
    margin: 35px 0 18px 0;
}

.article-content h3 {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #004559;
    margin: 30px 0 15px 0;
}

.article-content h4 {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #004559;
    margin: 25px 0 12px 0;
}

.article-content blockquote {
    border-left: 4px solid #00c9a7;
    padding: 20px 25px;
    margin: 30px 0;
    background-color: #f8fafa;
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 4px;
    line-height: 1.5;
}

.article-content img {
    border-radius: 10px;
    margin: 30px 0;
    max-width: 100%;
}

.article-content a {
    color: #004559;
    text-decoration: underline;
}

.article-content a:hover {
    color: #00c9a7;
}

/* Constrain tables to fit within content */
.article-content table {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    table-layout: fixed;
}

.article-content table td,
.article-content table th {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content table tr:first-child td,
.article-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #004559;
}

/* Constrain images with inline width/height */
.article-content img {
    border-radius: 10px;
    margin: 30px 0;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
}

.in-article-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.in-article-ad .advert-label {
    writing-mode: vertical-rl;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #888;
}

.in-article-ad .advert-placeholder {
    flex: 1;
    max-width: 728px;
    height: 90px;
    background-color: #d5d5d5;
    border-radius: 6px;
}

/* Blog Sidebar */
.blog-post-layout .sidebar {
    position: sticky;
    top: 60px;
}

.blog-post-layout .sidebar-section {
    margin-bottom: 30px;
}

.blog-post-layout .sidebar-section-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #004559;
    margin-bottom: 20px;
}

.blog-post-layout .sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-post-layout .sidebar-card {
    display: flex;
    flex-direction: column;
    background-color: #e8f4f6;
    border-radius: 10px;
    overflow: hidden;
}

.blog-post-layout .sidebar-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.blog-post-layout .sidebar-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-post-layout .sidebar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-layout .sidebar-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-post-layout .sidebar-card-tag {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
    transform: scale(0.85);
    transform-origin: left center;
}

.blog-post-layout .sidebar-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0;
}

.blog-post-layout .sidebar-card-date {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    color: #888;
    transform: scale(0.8);
    transform-origin: left center;
}

.blog-post-layout .sidebar-card:hover {
    opacity: 0.9;
}

.blog-post-layout .sidebar-cta {
    display: block;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    border-radius: 10px;
    padding: 25px 20px;
    text-decoration: none;
    position: relative;
}

.blog-post-layout .sidebar-cta-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0;
    padding-right: 40px;
}

.blog-post-layout .sidebar-cta-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-layout .sidebar-cta-button svg {
    width: 16px;
    height: 16px;
}

.blog-post-layout .sidebar-cta:hover {
    opacity: 0.9;
}

.blog-post-layout .sidebar-ad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.blog-post-layout .sidebar-ad .advert-label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #888;
}

.blog-post-layout .sidebar-ad .advert-placeholder {
    width: 100%;
    height: 250px;
    background-color: #b8cacd;
    border-radius: 10px;
}

/* ============================================
   USEFUL TOOLS PAGE STYLES
   ============================================ */

/* Hide overflow on tools page */
body.page-template-useful-tools {
    overflow-x: hidden;
}

/* Hide any default page wrapper/content that theme might add */
body.page-template-useful-tools .pageWrap,
body.page-template-useful-tools .page-content,
body.page-template-useful-tools .entry-content,
body.page-template-useful-tools > .container,
body.page-template-useful-tools .topSection,
body.page-template-useful-tools .content-area {
    display: none !important;
}

/* Ensure tools wrapper shows */
body.page-template-useful-tools .tools-wrapper {
    display: block !important;
}

.tools-wrapper {
    background-color: #e8f4f6;
    min-height: 100vh;
    overflow-x: hidden;
}

.tools-container {
    max-width: calc(100% - 230px);
    margin: 0 auto;
    padding: 60px 0;
}

.tools-header {
    max-width: 600px;
    margin-bottom: 50px;
}

.tools-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #004559;
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.tools-intro {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.tool-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card-image::before {
    content: '';
    position: absolute;
    width: 45%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
}

.tool-card-image img {
    position: relative;
    width: 35%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.tool-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #fff;
    color: #004559;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    z-index: 3;
}

.tool-card-content {
    background-color: #fff;
    padding: 15px;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.tool-card-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #004559;
    line-height: 1.3;
    margin: 0;
}

/* ============================================
   OUR STORY / ABOUT PAGE STYLES
   ============================================ */

/* Hide the live prices/chats bar on about pages */
body.page-template-ourstory .header-live { display: none !important; }

.about-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.about-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #004559;
    line-height: 1.1;
    margin: 0 0 30px 0;
}

.about-content {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p:first-of-type {
    font-size: 17px;
    line-height: 1.7;
}

/* Manifesto Box */
.manifesto-box {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.manifesto-title {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #004559;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.manifesto-intro {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #004559;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.manifesto-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #004559;
    line-height: 1.5;
}

.manifesto-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.manifesto-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #004559;
    font-weight: bold;
}

.manifesto-list li:last-child {
    margin-bottom: 0;
}

/* Bottom sections wrapper (Team + Latest Chats) */
.ourstory-bottom-sections {
    background-color: #e8f4f6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.team-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.team-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

.team-card-content {
    padding: 15px;
    text-align: left;
}

.team-card-name {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #004559;
    margin: 0 0 5px 0;
}

.team-card-role {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
}

.team-card:hover {
    opacity: 0.9;
}

/* Horizontal ad below team */
.team-ad-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.team-ad-horizontal .advert-placeholder {
    max-width: 728px;
    width: 100%;
    height: 90px;
    background-color: #b8cacd;
    border-radius: 10px;
}

.team-ad-horizontal .advert-label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #888;
    writing-mode: vertical-rl;
}

/* ============================================
   AUTHOR PAGE STYLES
   ============================================ */

/* Hide the live prices/chats bar on author pages */
body.author .header-live { display: none !important; }

.page-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
}

/* Author Header Section */
.author-header {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.author-info {
    padding-top: 20px;
}

.author-name {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #004559;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

/* Social Icons */
.author-social {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #a1f1fd 0%, #a8fecb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: #004559;
}

/* Author Bio */
.author-bio {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Author Content */
.author-content {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
}

.author-content h4 {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #004559;
    line-height: 1.3;
    margin: 25px 0 12px 0;
}

.author-content p {
    margin-bottom: 15px;
}

.author-content ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.author-content li {
    margin-bottom: 4px;
    line-height: 1.5;
}

/* Author Image */
.author-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

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

/* Sidebar Ad (author page specific) */
.author-image-wrapper .sidebar-ad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.author-image-wrapper .sidebar-ad .advert-label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #888;
    transform: scale(0.85);
}

.author-image-wrapper .sidebar-ad .advert-placeholder {
    width: 100%;
    height: 250px;
    background-color: #d5d5d5;
    border-radius: 6px;
}

/* Author Articles Section */
.author-articles-wrapper {
    background-color: #e8f4f6;
    width: 100%;
}

.author-articles-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.section-header-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header-author h2 {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #004559;
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Writers Section */
.writers-wrapper {
    background-color: #e8f4f6;
    width: 100%;
}

.writers-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.writers-section .section-header-author {
    padding-top: 30px;
}

.writers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Writer Card */
.writer-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.writer-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.writer-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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

.writer-card-content {
    padding: 15px;
    text-align: left;
}

.writer-card-name {
    font-family: "ClashDisplay-Variable", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #004559;
    margin: 0 0 5px 0;
}

.writer-card-role {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c9a7;
}

.writer-card:hover {
    opacity: 0.9;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1399px) {
    .widget-container { padding: 40px 0; max-width: calc(100% - 150px); }
    .forum-posts-widget { grid-template-columns: 1fr 380px; }
    .featured-post-title { font-size: 38px; }
    .picks-widget { grid-template-columns: 120px 1fr; }
    .stories-grid { gap: 15px; }
    .story-card-title { font-size: 18px; }
    .category-grid { grid-template-columns: 1fr 1fr 1fr 240px; gap: 15px; }
}

@media (max-width: 1199px) {
    .widget-container { padding: 30px 0; max-width: calc(100% - 80px); }
    .forum-posts-widget { grid-template-columns: 1fr 340px; gap: 15px; }
    .featured-post-title { font-size: 34px; }
    .small-post-title { font-size: 15px; }
    .picks-widget { grid-template-columns: 100px 1fr; gap: 15px; }
    .picks-featured-title { font-size: 22px; }
    .picks-card-title { font-size: 16px; }
    .stories-grid { gap: 12px; }
    .story-card-title { font-size: 16px; }
    .category-grid { grid-template-columns: 1fr 1fr 1fr 200px; }
    .post-card-title { font-size: 16px; }
    .latest-chats-widget { gap: 15px; }
    .team-grid { gap: 15px; }
    .category-page-header { padding: 30px; }
    .category-page-title { font-size: 42px; }
    
    /* Blog post */
    .blog-container { padding: 30px; }
    .blog-post-layout { gap: 30px; }
    .article-title { font-size: 40px; }
    
    /* Author page */
    .page-container { padding: 30px; }
    .author-header { gap: 50px; grid-template-columns: 1fr 320px; }
    .author-name { font-size: 36px; }
    .author-articles-section { padding: 30px; }
    .writers-section { padding: 0 30px 30px 30px; }
    .articles-grid { gap: 15px; }
    .writers-grid { gap: 15px; }
    
    /* Our Story page */
    .about-container { padding: 30px; }
    .about-layout { gap: 40px; grid-template-columns: 1fr 380px; }
    .about-title { font-size: 40px; }
    
    /* Useful Tools page */
    .tools-container { max-width: calc(100% - 150px); padding: 50px 0; }
    .tools-title { font-size: 42px; }
    .tools-grid { gap: 20px; }
}

@media (max-width: 991px) {
    .widget-container { padding: 25px 0; max-width: calc(100% - 50px); }
    .forum-posts-widget { grid-template-columns: 1fr; gap: 25px; }
    .featured-post { aspect-ratio: 16 / 9; }
    .featured-post-title { font-size: 32px; }
    .picks-widget { grid-template-columns: 1fr; gap: 20px; }
    .advert-space { order: -1; margin-bottom: 15px; }
    .advert-space .advert-placeholder { min-height: 90px; height: 90px; }
    .picks-posts { grid-template-columns: 1fr 1fr; }
    .picks-grid { grid-template-columns: 1fr; gap: 15px; }
    .stories-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .category-section .section-header-grid { display: flex; justify-content: space-between; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .category-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .category-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .advert-column { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
    .advert-column .advert-placeholder { max-width: 400px; height: 100px; }
    .divider-wrapper { grid-column: 1 / -1; }
    .latest-chats-widget { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-title { font-size: 22px; }
    .cta-banner-dark { flex-direction: column; text-align: center; }
    .cta-banner-dark .cta-banner-title { text-align: center; }
    .cta-banner-dark .cta-buttons { flex-wrap: wrap; justify-content: center; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .category-page-header { padding: 25px 20px; }
    .category-page-title { font-size: 36px; }
    .team-section-inner { padding: 0 20px; }
    
    /* Blog post */
    .blog-container { padding: 25px 20px; }
    .blog-post-layout { grid-template-columns: 1fr; gap: 40px; }
    .blog-post-layout .sidebar { position: static; }
    .blog-post-layout .sidebar-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .article-title { font-size: 36px; }
    
    /* Author page */
    .page-container { padding: 25px 20px; }
    .author-header { grid-template-columns: 1fr; gap: 30px; }
    .author-image-wrapper { order: -1; max-width: 280px; margin: 0 auto; }
    .author-info { text-align: center; padding-top: 0; }
    .author-social { justify-content: center; }
    .author-articles-section { padding: 25px 20px; }
    .writers-section { padding: 0 20px 25px 20px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .writers-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Our Story page */
    .about-container { padding: 25px 20px; }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-title { font-size: 36px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Useful Tools page */
    .tools-container { max-width: calc(100% - 80px); padding: 40px 0; }
    .tools-title { font-size: 36px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
    .widget-container { padding: 20px 0; max-width: calc(100% - 40px); }
    .featured-post { aspect-ratio: 4 / 3; }
    .featured-post-title { font-size: 26px; }
    .picks-posts { grid-template-columns: 1fr; }
    .picks-featured-title { font-size: 24px; }
    .picks-grid { grid-template-columns: 1fr 1fr; }
    
    /* Real Stories - start horizontal scroll earlier */
    .real-stories-widget {
        margin-right: -20px;
    }
    .stories-grid { 
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-right: 20px;
    }
    .story-card {
        flex: 0 0 55%;
        scroll-snap-align: start;
    }
    .story-card-title { font-size: 16px; }
    
    .category-section .section-header-grid { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; }
    .cta-banner-title { font-size: 20px; }
    .category-page-header { padding: 20px; }
    .category-page-title { font-size: 32px; }
    .category-buttons { flex-direction: column; }
    .category-button { justify-content: space-between; }
    
    /* Blog post */
    .blog-container { padding: 20px; }
    .article-title { font-size: 32px; }
    .blog-post-layout .sidebar-posts { gap: 15px; }
    
    /* Author page */
    .page-container { padding: 20px; }
    .author-name { font-size: 32px; }
    .author-bio { font-size: 16px; }
    .author-content { font-size: 15px; }
    
    /* Our Story page */
    .about-container { padding: 20px; }
    .about-title { font-size: 32px; }
    
    /* Useful Tools page */
    .tools-container { max-width: calc(100% - 50px); padding: 30px 0; }
    .tools-title { font-size: 32px; }
    .tools-header { margin-bottom: 35px; }
}

@media (max-width: 575px) {
    .widget-container { padding: 15px 0; max-width: calc(100% - 30px); }
    .section-header h2, .section-header-flex h2 { font-size: 20px; }
    .featured-post-title { font-size: 22px; }
    .small-post-card { grid-template-columns: 1fr 90px; }
    .small-post-image { width: 90px; }
    .small-post-title { font-size: 14px; }
    
    /* SlimrChat Picks - Full width featured, 2x2 grid below */
    .picks-widget { grid-template-columns: 1fr; }
    .picks-featured { margin-bottom: 15px; }
    .picks-featured-title { font-size: 22px; }
    .picks-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
    }
    .picks-card-title { font-size: 14px; }
    
    /* Real Stories - Horizontal scroll */
    .real-stories-widget {
        margin-right: -15px;
        overflow: visible;
    }
    .stories-grid { 
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-right: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .stories-grid::-webkit-scrollbar {
        display: none;
    }
    .story-card {
        flex: 0 0 65%;
        scroll-snap-align: start;
    }
    .story-card-title { font-size: 14px; }
    
    /* Category sections - 2 column carousel style */
    .category-grid, .category-grid-3col, .category-grid-4col { 
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin-right: -15px;
        padding-right: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .category-grid::-webkit-scrollbar,
    .category-grid-3col::-webkit-scrollbar,
    .category-grid-4col::-webkit-scrollbar {
        display: none;
    }
    .category-grid .post-card,
    .category-grid-3col .post-card,
    .category-grid-4col .post-card {
        flex: 0 0 calc(50% - 6px);
        scroll-snap-align: start;
    }
    .category-grid .empty-column { display: none; }
    .category-grid .divider-wrapper,
    .category-grid .advert-column { 
        display: none; 
    }
    
    /* Ads should show on mobile */
    .advert-space { display: flex; }
    .advert-column { 
        display: flex !important;
        flex: 0 0 100%;
        margin-top: 15px;
    }
    
    /* Latest Chats */
    .latest-chats-widget { grid-template-columns: 1fr; }
    
    /* CTA Banner - Text left, arrow only button */
    .cta-banner { 
        padding: 22px 18px; 
        border-radius: 12px; 
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    .cta-banner-title { 
        font-size: 18px; 
        text-align: left;
        flex: 1;
    }
    .cta-button-outline {
        padding: 0;
        background: #fff;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0;
        gap: 0;
    }
    .cta-button-outline .arrow-circle {
        background: transparent;
        width: 24px;
        height: 24px;
    }
    .cta-button-outline .arrow-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-banner-dark { padding: 22px 18px; border-radius: 12px; }
    .team-grid { gap: 12px; }
    .team-card-name { font-size: 16px; }
    .category-page-header { padding: 15px; }
    .category-page-title { font-size: 28px; }
    .category-page-intro { font-size: 15px; }
    .team-section-inner { padding: 0 15px; }
    
    /* Blog post */
    .blog-container { padding: 15px; }
    .article-title { font-size: 28px; }
    .blog-post-layout .sidebar-posts { grid-template-columns: 1fr; }
    
    /* Author page */
    .page-container { padding: 15px; }
    .author-name { font-size: 28px; }
    .author-bio { font-size: 15px; }
    .author-content { font-size: 14px; }
    .author-articles-section { padding: 15px; }
    .writers-section { padding: 0 15px 15px 15px; }
    .articles-grid { grid-template-columns: 1fr; }
    .writers-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section-header-author h2 { font-size: 20px; }
    .writer-card-name { font-size: 16px; }
    .author-image-wrapper .sidebar-ad .advert-placeholder { height: 150px; }
    
    /* Our Story page */
    .about-container { padding: 15px; }
    .about-title { font-size: 28px; }
    .manifesto-box { padding: 20px; }
    .manifesto-title { font-size: 22px; }
    .team-grid { gap: 15px; }
    .team-card-name { font-size: 16px; }
    
    /* Useful Tools page */
    .tools-container { max-width: calc(100% - 30px); padding: 25px 0; }
    .tools-title { font-size: 28px; }
    .tools-intro { font-size: 15px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tool-card { border-radius: 10px; }
    .tool-card-content { padding: 12px; }
    .tool-card-title { font-size: 15px; }
    .tool-card-tag { font-size: 7px; padding: 4px 8px; }
}
