/*
Theme Name: Travel X Trippy Taless
Theme URI: https://trippytaless.com/blogs/
Description: Brand-consistent child theme of Travel X, restyling the Trippy Taless blog to match trippytaless.com — same colors, typography, spacing, buttons, cards, header and footer.
Author: Trippy Taless
Template: travel-x
Version: 1.0.13
Text Domain: travel-x-trippytaless
*/

/* =======================================================================
   DESIGN TOKENS — extracted from trippytaless.com (Assets/Website/style.css)
   Single source of truth. Every override below reads from these variables.
   ======================================================================= */
:root {
    --tt-purple: #8b5cf6;
    --tt-violet: #a855f7;
    --tt-pink: #ec4899;
    --tt-orange: #f97316;
    --tt-ink: #1e293b;
    --tt-slate-600: #475569;
    --tt-slate-500: #64748b;
    --tt-slate-300: #cbd5e1;
    --tt-surface-1: #f8fafc;
    --tt-surface-2: #f1f5f9;
    --tt-surface-3: #e2e8f0;
    --tt-border: #e2e8f0;
    --tt-white: #ffffff;
    --tt-success: #10b981;
    --tt-gold: #fbbf24;

    --tt-gradient-brand: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #ec4899 100%);
    --tt-gradient-text: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --tt-gradient-surface: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --tt-gradient-footer: linear-gradient(135deg, #1e293b 0%, #334155 100%);

    --tt-font-heading: 'Playfair Display', serif;
    --tt-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --tt-radius-sm: 8px;
    --tt-radius-md: 12px;
    --tt-radius-lg: 16px;
    --tt-radius-xl: 20px;
    --tt-radius-2xl: 24px;

    --tt-shadow-ambient: 0 4px 20px rgba(0, 0, 0, 0.08);
    --tt-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --tt-shadow-brand: 0 8px 24px rgba(139, 92, 246, 0.3);
    --tt-shadow-brand-hover: 0 12px 32px rgba(139, 92, 246, 0.4);

    --tt-ease: all 0.3s ease;
}

/* =======================================================================
   GLOBAL / TYPOGRAPHY
   ======================================================================= */
body {
    font-family: var(--tt-font-body) !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: var(--tt-ink);
    line-height: 1.7;
}

h1, h2, h3,
.entry-title,
.page-title,
.archive-title,
.ttcx-footer-logo {
    font-family: var(--tt-font-heading) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: var(--tt-ink);
}

a {
    color: var(--tt-purple);
}
a:hover {
    color: var(--tt-pink);
}

/* =======================================================================
   HEADER / NAVIGATION  (#masthead confirmed in parent header.php)
   ======================================================================= */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding: 14px 0;
    transition: var(--tt-ease);
}

body {
    padding-top: 84px; /* offset for fixed header */
}

#masthead .site-title,
#masthead .site-title a,
#masthead a.custom-logo-link {
    font-family: var(--tt-font-heading) !important;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    background: var(--tt-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

#masthead nav:not(#mobile-navigation),
#masthead .main-navigation,
#site-navigation {
    background: transparent;
}

/* The parent theme hides/collapses primary nav on singular templates in
   some configurations — force it visible everywhere so the blog never
   loses its way back to the rest of the site.

   :not(#mobile-navigation) matters here: on small screens the parent theme
   renders a SEPARATE mobile nav, <nav id="mobile-navigation">, containing
   its own "Menu"/"Close" toggle button (#mmenu-btn) and a `ul.wsm-menu`
   that the parent's own CSS positions off-canvas (position:absolute) until
   a `.menu-active` class is toggled onto #mobile-navigation by the parent's
   JS. Because that element is also a bare <nav>, our old blanket
   `#masthead nav { display:block !important; ... }` rule matched it too —
   forcing the dropdown permanently open/visible regardless of the toggle,
   which is exactly the "looks odd on phone" bug: the plain, unstyled list
   sat permanently expanded under the header, on top of a redundant-looking
   "Menu" button that visually did nothing. Excluding #mobile-navigation
   here lets the parent's own show/hide toggle behavior work as designed;
   the dropdown is then restyled properly below under "MOBILE NAVIGATION". */
#masthead nav:not(#mobile-navigation),
#masthead .main-navigation,
#site-navigation,
body.single #masthead nav:not(#mobile-navigation),
body.single #masthead .main-navigation,
body.single #site-navigation,
body.singular #masthead nav:not(#mobile-navigation),
body.singular #masthead .main-navigation,
body.singular #site-navigation {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: static !important;
}

#masthead nav:not(#mobile-navigation) ul,
#masthead .main-navigation ul,
#site-navigation ul {
    list-style: none !important;
    display: flex !important;
    justify-content: center;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
}
#masthead nav:not(#mobile-navigation) li,
#masthead .main-navigation li,
#site-navigation li {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#masthead nav:not(#mobile-navigation) a,
#masthead .main-navigation a,
#site-navigation a {
    color: var(--tt-slate-600) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--tt-ease);
}

#masthead nav:not(#mobile-navigation) a:hover,
#masthead .main-navigation a:hover,
#site-navigation a:hover {
    color: var(--tt-purple) !important;
}

/* CTA menu item — tagged with .ttcx-nav-cta by assets/js/blog.js based on its href */
a.ttcx-nav-cta {
    background: var(--tt-gradient-brand);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--tt-radius-md);
    font-weight: 600 !important;
    box-shadow: var(--tt-shadow-brand);
}
a.ttcx-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--tt-shadow-brand-hover);
}

.menu-toggle {
    background: none !important;
    border: none !important;
    color: var(--tt-slate-600) !important;
}

/* =======================================================================
   MOBILE NAVIGATION  (<nav id="mobile-navigation"> — the parent theme's
   separate small-screen nav bar, with its own "Menu"/"Close" toggle button
   (#mmenu-btn) and a `ul.wsm-menu` dropdown that the parent shows/hides
   itself by toggling a `.menu-active` class on #mobile-navigation.

   Deliberately NOT forcing display/visibility/max-height on `.wsm-menu`
   here — that's what caused it to render permanently expanded under a
   redundant-looking "Menu" button (the earlier #masthead nav rules above
   matched this element too, since it's also a <nav>; see the
   :not(#mobile-navigation) notes above). Everything below only styles
   colors/spacing/layout, so it has no effect on whether the dropdown is
   shown — that stays entirely up to the parent's own toggle. */
.mlogo .site-title a,
.mlogo a.custom-logo-link {
    font-family: var(--tt-font-heading) !important;
    font-weight: 600 !important;
    background: var(--tt-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#mmenu-btn {
    background: var(--tt-gradient-brand) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--tt-radius-md) !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

#mobile-navigation .wsm-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    background: #fff;
    box-shadow: var(--tt-shadow-hover);
    padding: 12px 20px;
    text-align: center;
}
#mobile-navigation .wsm-menu li {
    list-style: none;
}
#mobile-navigation .wsm-menu a {
    display: block;
    padding: 12px 8px;
    color: var(--tt-slate-600) !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px solid var(--tt-border);
}
#mobile-navigation .wsm-menu li:last-child a {
    border-bottom: none;
}
#mobile-navigation .wsm-menu a.ttcx-nav-cta {
    margin-top: 8px;
}

/* =======================================================================
   LAYOUT / CONTAINERS
   ======================================================================= */
.container,
#primary,
#content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

#primary {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* =======================================================================
   PAGE / ARCHIVE HEADER
   ======================================================================= */
.page-header,
.archive-header {
    background: var(--tt-gradient-surface);
    border-radius: var(--tt-radius-2xl);
    padding: 40px;
    margin-bottom: 48px;
    text-align: center;
    border: 1px solid var(--tt-border);
}
.page-title,
.archive-title {
    font-size: 2.25rem !important;
    margin: 0;
}

/* =======================================================================
   ARCHIVE / HOME / CATEGORY / TAG / SEARCH — card grid
   (matches the .blog-card component already used on trippytaless.com)
   ======================================================================= */
body.home .site-main,
body.blog .site-main,
body.archive .site-main,
body.search .site-main,
body.category .site-main,
body.tag .site-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

body.home article,
body.blog article,
body.archive article,
body.search article,
body.category article,
body.tag article {
    background: var(--tt-gradient-surface);
    border-radius: var(--tt-radius-2xl);
    border: 1px solid var(--tt-border);
    overflow: hidden;
    transition: var(--tt-ease);
    display: flex;
    flex-direction: column;
}
body.home article:hover,
body.blog article:hover,
body.archive article:hover,
body.search article:hover,
body.category article:hover,
body.tag article:hover {
    transform: translateY(-8px);
    box-shadow: var(--tt-shadow-hover);
}
body.home article img,
body.blog article img,
body.archive article img,
body.search article img,
body.category article img,
body.tag article img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
body.home article .entry-header,
body.home article .entry-content,
body.home article .entry-summary,
body.home article .entry-footer,
body.blog article .entry-header,
body.blog article .entry-content,
body.blog article .entry-summary,
body.blog article .entry-footer,
body.archive article .entry-header,
body.archive article .entry-content,
body.archive article .entry-summary,
body.archive article .entry-footer {
    padding: 24px 28px;
}
body.home article .entry-title,
body.blog article .entry-title,
body.archive article .entry-title {
    font-size: 1.3rem !important;
    margin: 0 0 12px;
}
body.home article .entry-title a,
body.blog article .entry-title a,
body.archive article .entry-title a {
    color: var(--tt-ink);
    text-decoration: none;
}

/* Pagination */
.pagination,
.nav-links,
.page-numbers {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}
.page-numbers {
    padding: 10px 16px;
    border-radius: var(--tt-radius-md);
    background: var(--tt-white);
    border: 1px solid var(--tt-border);
    color: var(--tt-slate-600);
    text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover {
    background: var(--tt-gradient-brand);
    color: #fff;
    border-color: transparent;
}

/* =======================================================================
   SINGLE POST
   ======================================================================= */
.single .entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
}
.single .entry-title {
    font-size: 2.5rem !important;
}
.single .entry-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tt-slate-600);
}
.single .entry-content h2 {
    font-size: 1.9rem !important;
    margin-top: 48px;
}
.single .entry-content h3 {
    font-size: 1.4rem !important;
    margin-top: 32px;
}
.single .entry-content blockquote {
    border-left: 4px solid var(--tt-purple);
    background: var(--tt-surface-1);
    padding: 20px 28px;
    border-radius: var(--tt-radius-lg);
    font-style: italic;
    color: var(--tt-slate-600);
}
.single .entry-content img {
    border-radius: var(--tt-radius-lg);
    box-shadow: var(--tt-shadow-ambient);
}
.single .entry-content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--tt-radius-md);
    overflow: hidden;
}
.single .entry-content table th {
    background: var(--tt-gradient-brand);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
}
.single .entry-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--tt-border);
}
.single .entry-content code {
    background: var(--tt-surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}
.single .entry-content pre {
    background: var(--tt-ink);
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--tt-radius-lg);
    overflow-x: auto;
}

/* Reading progress bar */
.ttcx-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1100;
}
.ttcx-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--tt-gradient-brand);
    transition: width 0.1s ease-out;
}

/* Reading time / meta */
.ttcx-post-meta {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    color: var(--tt-slate-500);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Table of contents */
.ttcx-toc {
    max-width: 760px;
    margin: 0 auto 40px;
    background: var(--tt-gradient-surface);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-xl);
    padding: 28px 32px;
}
.ttcx-toc-title {
    font-size: 1.1rem !important;
    margin: 0 0 12px;
}
.ttcx-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
}
.ttcx-toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}
.ttcx-toc-sub {
    padding-left: 16px;
    font-size: 0.92em;
}
.ttcx-toc a {
    text-decoration: none;
    color: var(--tt-slate-600);
    font-weight: 500;
}
.ttcx-toc a:hover {
    color: var(--tt-purple);
}

/* Inline brand CTA */
.ttcx-inline-cta {
    max-width: 760px;
    margin: 48px auto;
    background: var(--tt-gradient-brand);
    color: #fff;
    border-radius: var(--tt-radius-2xl);
    padding: 32px;
    text-align: center;
}
.ttcx-inline-cta p {
    margin: 0 0 16px;
    font-size: 1.05rem;
}
.ttcx-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--tt-purple) !important;
    padding: 14px 28px;
    border-radius: var(--tt-radius-md);
    font-weight: 600;
    text-decoration: none !important;
}

/* Share buttons */
.ttcx-share {
    max-width: 760px;
    margin: 0 auto 32px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 500;
    color: var(--tt-slate-600);
}
.ttcx-share a {
    padding: 8px 16px;
    border-radius: var(--tt-radius-md);
    background: var(--tt-surface-2);
    color: var(--tt-slate-600) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: var(--tt-ease);
}
.ttcx-share a:hover {
    background: var(--tt-gradient-brand);
    color: #fff !important;
}

/* Author box */
.ttcx-author-box {
    max-width: 760px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--tt-gradient-surface);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-xl);
    padding: 24px;
}
.ttcx-author-box img {
    border-radius: 50%;
    box-shadow: none !important;
}
.ttcx-author-name {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.ttcx-author-bio {
    color: var(--tt-slate-500);
    font-size: 0.95rem;
    margin: 0;
}

/* Related posts */
.ttcx-related-posts {
    max-width: 900px;
    margin: 56px auto;
}
.ttcx-related-posts h2 {
    text-align: center;
    font-size: 1.8rem !important;
    margin-bottom: 24px;
}
.ttcx-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.ttcx-related-card {
    display: block;
    text-decoration: none !important;
    background: var(--tt-gradient-surface);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-xl);
    overflow: hidden;
    transition: var(--tt-ease);
}
.ttcx-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tt-shadow-hover);
}
.ttcx-related-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.ttcx-related-title {
    display: block;
    padding: 16px;
    font-weight: 600;
    color: var(--tt-ink);
}

/* =======================================================================
   COMMENTS  (core WordPress IDs/classes — comment_form() defaults)
   ======================================================================= */
#comments,
.comments-area {
    max-width: 760px;
    margin: 56px auto 0;
}
.comment-reply-title,
#comments h2 {
    font-size: 1.5rem !important;
}
#commentform {
    background: var(--tt-gradient-surface);
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-xl);
    padding: 28px;
    margin-top: 20px;
}
#commentform p {
    margin-bottom: 16px;
}
#commentform label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--tt-ink);
}
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea,
#author, #email, #url, #comment {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    font-family: var(--tt-font-body);
    background: #fff;
}
#commentform input:focus,
#commentform textarea:focus {
    outline: 2px solid var(--tt-purple);
    outline-offset: 1px;
}
#commentform #submit,
#commentform input[type="submit"] {
    background: var(--tt-gradient-brand) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: var(--tt-radius-md) !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: var(--tt-ease);
}
#commentform #submit:hover,
#commentform input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--tt-shadow-brand);
}
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comment-body {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}
.comment-author .fn {
    font-weight: 700;
    font-style: normal;
}
.comment-metadata {
    color: var(--tt-slate-500);
    font-size: 0.85rem;
}

/* =======================================================================
   404
   ======================================================================= */
body.error404 #primary {
    text-align: center;
    padding: 100px 24px;
}
body.error404 h1 {
    color: var(--tt-purple) !important;
    font-size: 2.5rem !important;
}
body.error404 .search-form {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
}
body.error404 .search-field {
    padding: 12px 18px;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-radius-md);
    min-width: 260px;
}
body.error404 .search-submit {
    background: var(--tt-gradient-brand);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--tt-radius-md);
    font-weight: 600;
    cursor: pointer;
}

/* =======================================================================
   FOOTER  (child theme footer.php full override — #colophon preserved)
   ======================================================================= */
#colophon.ttcx-footer {
    background: var(--tt-gradient-footer);
    color: #fff;
    padding: 72px 0 32px;
    margin-top: 80px;
}
.ttcx-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.ttcx-footer-logo {
    font-size: 1.6rem !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    margin-bottom: 16px;
}
.ttcx-footer-desc {
    color: var(--tt-slate-300);
    line-height: 1.6;
    margin-bottom: 20px;
}
.ttcx-footer-social {
    display: flex;
    gap: 12px;
}
.ttcx-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--tt-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--tt-ease);
}
.ttcx-footer-social a:hover {
    background: var(--tt-gradient-brand);
    transform: translateY(-3px);
}
.ttcx-footer-links-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1rem;
}
.ttcx-footer-links-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ttcx-footer-links-col li {
    margin-bottom: 10px;
}
.ttcx-footer-links-col a {
    color: var(--tt-slate-300) !important;
    text-decoration: none !important;
    font-size: 0.95rem;
}
.ttcx-footer-links-col a:hover {
    color: var(--tt-purple) !important;
}
.ttcx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--tt-slate-300);
    font-size: 0.85rem;
}
.ttcx-footer-legal {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ttcx-footer-legal a {
    color: var(--tt-slate-300) !important;
    text-decoration: none !important;
}
.ttcx-footer-legal a:hover {
    color: var(--tt-purple) !important;
}

/* Hide the parent theme's own "Powered by WordPress Theme: Travel X by wp
   theme space" credit line. Confirmed via live DOM inspection: the parent
   renders it as <div class="site-info finfo dsinfo"> nested directly inside
   our <footer id="colophon" class="site-footer ttcx-footer">, independent of
   footer.php markup. Live testing showed a bare ".dsinfo" selector was NOT
   enough — the parent's own stylesheet targets this element with higher
   specificity, so it kept computing to "display: block". These rules use
   maximum qualification/specificity to guarantee the win, and assets/js/blog.js
   also force-hides it inline (with !important, applied after all CSS) as a
   belt-and-braces fallback. */
footer#colophon.site-footer.ttcx-footer div.site-info.finfo.dsinfo,
#colophon .site-info.finfo.dsinfo,
#colophon .dsinfo,
.ttcx-footer .dsinfo,
.dsinfo,
.finfo.dsinfo,
.site-info.dsinfo {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 768px) {
    body { padding-top: 70px; }
    #masthead nav ul,
    #masthead .main-navigation ul,
    #site-navigation ul {
        gap: 16px;
    }
    .single .entry-title { font-size: 1.9rem !important; }
    .ttcx-toc ul { columns: 1; }
    .ttcx-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .ttcx-footer-social { justify-content: center; }
    .ttcx-footer-bottom { flex-direction: column; text-align: center; }
    body.home .site-main,
    body.blog .site-main,
    body.archive .site-main {
        grid-template-columns: 1fr;
    }
}
