/*
Theme Name: TourCivilizations
Theme URI: https://tourcivilizations.com
Author: TourCivilizations
Author URI: https://tourcivilizations.com
Description: A premium WordPress theme for tourism, cultural heritage, and civilization exploration. Discover the World, Explore Civilizations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tourcivilizations
Tags: travel, tourism, magazine, editorial, blog, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready

TourCivilizations — Discover the World, Explore Civilizations
A premium editorial tourism and cultural heritage WordPress theme.
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --tc-gold: #C49A56;
    --tc-gold-light: #D4AF72;
    --tc-gold-dark: #A67D3D;
    --tc-navy: #0D1B2A;
    --tc-navy-light: #1B2D45;
    --tc-navy-lighter: #2A3F5F;

    /* Neutral Colors */
    --tc-white: #FFFFFF;
    --tc-warm-white: #FDFBF7;
    --tc-light-beige: #F8F5F0;
    --tc-soft-gray: #F2F0ED;
    --tc-medium-gray: #E8E5E0;
    --tc-text-gray: #6B7280;
    --tc-dark-gray: #374151;

    /* Typography */
    --tc-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --tc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --tc-font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --tc-container-max: 1280px;
    --tc-container-narrow: 780px;
    --tc-section-spacing: 5rem;
    --tc-card-radius: 8px;

    /* Transitions */
    --tc-transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--tc-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tc-navy);
    background-color: var(--tc-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--tc-navy);
    text-decoration: none;
    transition: color var(--tc-transition);
}

a:hover,
a:focus {
    color: var(--tc-gold);
}

a:focus-visible {
    outline: 2px solid var(--tc-gold);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tc-font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--tc-navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.25rem;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--tc-light-beige);
    clip: auto !important;
    clip-path: none;
    color: var(--tc-navy);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   LAYOUT
   ============================================ */
.tc-container {
    max-width: var(--tc-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tc-container--narrow {
    max-width: var(--tc-container-narrow);
}

.tc-section {
    padding: var(--tc-section-spacing) 0;
}

.tc-section--alt {
    background-color: var(--tc-warm-white);
}

.tc-section--beige {
    background-color: var(--tc-light-beige);
}

/* ============================================
   HEADER
   ============================================ */
.tc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--tc-white);
    border-bottom: 1px solid var(--tc-medium-gray);
    transition: box-shadow var(--tc-transition);
}

.tc-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.08);
}

.tc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--tc-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tc-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.tc-header__logo img {
    height: 45px;
    width: auto;
}

.tc-header__logo-text {
    font-family: var(--tc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tc-navy);
    letter-spacing: -0.02em;
}

.tc-header__logo-text span {
    color: var(--tc-gold);
}

/* Navigation */
.tc-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.tc-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-nav__item {
    position: relative;
}

.tc-nav__link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tc-navy);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color var(--tc-transition);
    white-space: nowrap;
}

.tc-nav__link:hover,
.tc-nav__link:focus,
.tc-nav__item.current-menu-item > .tc-nav__link,
.tc-nav__item.current-menu-parent > .tc-nav__link {
    color: var(--tc-gold);
}

/* Dropdown */
.tc-nav__item .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--tc-white);
    border: 1px solid var(--tc-medium-gray);
    border-radius: var(--tc-card-radius);
    box-shadow: 0 10px 40px rgba(13, 27, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--tc-transition);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 100;
}

.tc-nav__item:hover > .sub-menu,
.tc-nav__item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tc-nav__item .sub-menu .menu-item a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--tc-navy);
    transition: all var(--tc-transition);
}

.tc-nav__item .sub-menu .menu-item a:hover {
    color: var(--tc-gold);
    background-color: var(--tc-warm-white);
}

/* Header actions */
.tc-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tc-header__search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--tc-navy);
    transition: all var(--tc-transition);
}

.tc-header__search-toggle:hover {
    color: var(--tc-gold);
    background-color: var(--tc-light-beige);
}

.tc-header__search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Mobile menu toggle */
.tc-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--tc-navy);
}

.tc-header__menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--tc-transition);
}

.tc-header__menu-toggle span::before,
.tc-header__menu-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--tc-transition);
}

.tc-header__menu-toggle span::before { top: -7px; }
.tc-header__menu-toggle span::after { bottom: -7px; }

.tc-header__menu-toggle.is-active span {
    background-color: transparent;
}

.tc-header__menu-toggle.is-active span::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.tc-header__menu-toggle.is-active span::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search overlay */
.tc-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tc-transition);
}

.tc-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.tc-search-overlay__inner {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
}

.tc-search-overlay__form {
    position: relative;
}

.tc-search-overlay__input {
    width: 100%;
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-family: var(--tc-font-body);
    color: var(--tc-navy);
    background: var(--tc-white);
    border: 2px solid var(--tc-gold);
    border-radius: var(--tc-card-radius);
    outline: none;
}

.tc-search-overlay__input:focus {
    border-color: var(--tc-gold-light);
    box-shadow: 0 0 0 4px rgba(196, 154, 86, 0.2);
}

.tc-search-overlay__close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--tc-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.tc-ticker {
    display: flex;
    align-items: center;
    background: var(--tc-navy);
    border-bottom: 3px solid var(--tc-gold);
    height: 46px;
    overflow: hidden;
    position: relative;
}

.tc-ticker__label {
    background: var(--tc-gold);
    color: var(--tc-navy);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.tc-ticker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53e3e;
    animation: tc-pulse 1.5s ease-in-out infinite;
}

.tc-ticker__track {
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 1;
    height: 100%;
    mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30px, black calc(100% - 30px), transparent);
}

.tc-ticker__content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tc-ticker-scroll 35s linear infinite;
}

.tc-ticker__content:hover {
    animation-play-state: paused;
}

.tc-ticker__item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding-right: 12px;
    transition: color var(--tc-transition);
}

.tc-ticker__item:hover {
    color: var(--tc-gold);
}

.tc-ticker__sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tc-gold);
    margin-left: 12px;
    flex-shrink: 0;
}

@keyframes tc-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes tc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .tc-ticker {
        height: 40px;
    }
    .tc-ticker__label {
        padding: 0 14px;
        font-size: 0.7rem;
    }
    .tc-ticker__item {
        font-size: 0.8rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.tc-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--tc-navy);
}

.tc-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tc-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(13, 27, 42, 0.85) 0%,
        rgba(13, 27, 42, 0.4) 40%,
        rgba(13, 27, 42, 0.1) 100%
    );
}

.tc-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--tc-container-max);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.tc-hero__category {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tc-navy);
    background-color: var(--tc-gold);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.tc-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--tc-white);
    max-width: 750px;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.tc-hero__excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tc-hero__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.tc-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tc-navy);
    background-color: var(--tc-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--tc-transition);
    letter-spacing: 0.02em;
}

.tc-hero__cta:hover {
    background-color: var(--tc-gold-light);
    color: var(--tc-navy);
    transform: translateY(-1px);
}

/* ============================================
   BUTTONS
   ============================================ */
.tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--tc-transition);
    letter-spacing: 0.02em;
    cursor: pointer;
}

.tc-btn--primary {
    color: var(--tc-navy);
    background-color: var(--tc-gold);
    border: 2px solid var(--tc-gold);
}

.tc-btn--primary:hover {
    background-color: var(--tc-gold-dark);
    border-color: var(--tc-gold-dark);
    color: var(--tc-white);
}

.tc-btn--outline {
    color: var(--tc-navy);
    background: transparent;
    border: 2px solid var(--tc-navy);
}

.tc-btn--outline:hover {
    background-color: var(--tc-navy);
    color: var(--tc-white);
}

.tc-btn--outline-gold {
    color: var(--tc-gold);
    background: transparent;
    border: 2px solid var(--tc-gold);
}

.tc-btn--outline-gold:hover {
    background-color: var(--tc-gold);
    color: var(--tc-navy);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.tc-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.tc-section-header__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    position: relative;
}

.tc-section-header__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--tc-gold);
    margin-top: 0.75rem;
}

.tc-section-header__subtitle {
    font-size: 1rem;
    color: var(--tc-text-gray);
    margin-top: 0.5rem;
    font-weight: 400;
}

.tc-section-header__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tc-gold);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color var(--tc-transition);
}

.tc-section-header__link:hover {
    color: var(--tc-gold-dark);
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.tc-card {
    background: var(--tc-white);
    border-radius: var(--tc-card-radius);
    overflow: hidden;
    transition: all var(--tc-transition);
    border: 1px solid var(--tc-medium-gray);
}

.tc-card:hover {
    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.08);
    transform: translateY(-2px);
}

.tc-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.tc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tc-card:hover .tc-card__image img {
    transform: scale(1.03);
}

.tc-card__category {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tc-navy);
    background-color: var(--tc-gold);
    border-radius: 2px;
    z-index: 2;
}

.tc-card__body {
    padding: 1.25rem;
}

.tc-card__title {
    font-size: 1.125rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.tc-card__title a {
    color: var(--tc-navy);
    text-decoration: none;
}

.tc-card__title a:hover {
    color: var(--tc-gold);
}

.tc-card__excerpt {
    font-size: 0.9rem;
    color: var(--tc-text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tc-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--tc-text-gray);
}

.tc-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Card Grid Layouts */
.tc-grid {
    display: grid;
    gap: 1.75rem;
}

.tc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.tc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.tc-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Featured card */
.tc-card--featured {
    grid-column: span 2;
}

.tc-card--featured .tc-card__image {
    aspect-ratio: 16/9;
}

.tc-card--featured .tc-card__title {
    font-size: 1.5rem;
}

/* Horizontal card */
.tc-card--horizontal {
    display: grid;
    grid-template-columns: 280px 1fr;
    border: 1px solid var(--tc-medium-gray);
}

.tc-card--horizontal .tc-card__image {
    aspect-ratio: auto;
    height: 100%;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.tc-destination-card {
    position: relative;
    border-radius: var(--tc-card-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.tc-destination-card__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tc-destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tc-destination-card:hover .tc-destination-card__image img {
    transform: scale(1.05);
}

.tc-destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(13, 27, 42, 0.8) 0%,
        rgba(13, 27, 42, 0.1) 60%
    );
    z-index: 1;
}

.tc-destination-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.tc-destination-card__name {
    font-family: var(--tc-font-heading);
    font-size: 1.5rem;
    color: var(--tc-white);
    margin-bottom: 0.25rem;
}

.tc-destination-card__count {
    font-size: 0.8rem;
    color: var(--tc-gold);
    font-weight: 500;
}

/* ============================================
   CIVILIZATION CARDS
   ============================================ */
.tc-civ-card {
    position: relative;
    border-radius: var(--tc-card-radius);
    overflow: hidden;
    background: var(--tc-navy);
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    transition: all var(--tc-transition);
}

.tc-civ-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.2);
}

.tc-civ-card__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tc-civ-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.6s ease;
}

.tc-civ-card:hover .tc-civ-card__image img {
    opacity: 0.75;
    transform: scale(1.03);
}

.tc-civ-card__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9), transparent);
}

.tc-civ-card__era {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tc-gold);
    margin-bottom: 0.5rem;
}

.tc-civ-card__title {
    font-family: var(--tc-font-heading);
    font-size: 1.375rem;
    color: var(--tc-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tc-civ-card__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.tc-breadcrumbs {
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: var(--tc-text-gray);
}

.tc-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.tc-breadcrumbs__separator {
    color: var(--tc-medium-gray);
}

.tc-breadcrumbs a {
    color: var(--tc-text-gray);
    text-decoration: none;
}

.tc-breadcrumbs a:hover {
    color: var(--tc-gold);
}

.tc-breadcrumbs__current {
    color: var(--tc-navy);
    font-weight: 500;
}

/* ============================================
   SINGLE ARTICLE
   ============================================ */
.tc-article {
    max-width: var(--tc-container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tc-article__header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.tc-article__category {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tc-gold);
    border: 1px solid var(--tc-gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.tc-article__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.tc-article__subtitle {
    font-size: 1.2rem;
    color: var(--tc-text-gray);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tc-article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--tc-text-gray);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--tc-medium-gray);
}

.tc-article__meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tc-article__featured-image {
    margin: 2rem 0;
    border-radius: var(--tc-card-radius);
    overflow: hidden;
}

.tc-article__featured-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.tc-article__featured-image figcaption {
    font-size: 0.8rem;
    color: var(--tc-text-gray);
    text-align: center;
    padding: 0.75rem 0;
    font-style: italic;
}

/* Article Content */
.tc-article__content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--tc-dark-gray);
}

.tc-article__content h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.75rem;
}

.tc-article__content h3 {
    margin: 2rem 0 0.75rem;
    font-size: 1.375rem;
}

.tc-article__content h4 {
    margin: 1.5rem 0 0.75rem;
}

.tc-article__content p {
    margin-bottom: 1.5rem;
}

.tc-article__content ul,
.tc-article__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.tc-article__content ul {
    list-style: disc;
}

.tc-article__content ol {
    list-style: decimal;
}

.tc-article__content li {
    margin-bottom: 0.5rem;
}

.tc-article__content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--tc-gold);
    background: var(--tc-warm-white);
    font-family: var(--tc-font-accent);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tc-navy);
    line-height: 1.7;
}

.tc-article__content figure {
    margin: 2rem 0;
}

.tc-article__content figure img {
    border-radius: var(--tc-card-radius);
}

.tc-article__content figcaption {
    font-size: 0.8rem;
    color: var(--tc-text-gray);
    text-align: center;
    padding: 0.75rem 0;
}

.tc-article__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.tc-article__content table th,
.tc-article__content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--tc-medium-gray);
    text-align: left;
}

.tc-article__content table th {
    background: var(--tc-light-beige);
    font-weight: 600;
}

/* Table of Contents */
.tc-toc {
    background: var(--tc-warm-white);
    border: 1px solid var(--tc-medium-gray);
    border-radius: var(--tc-card-radius);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.tc-toc__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tc-navy);
    font-family: var(--tc-font-body);
}

.tc-toc__list {
    list-style: none;
    counter-reset: toc;
}

.tc-toc__list li {
    counter-increment: toc;
    margin-bottom: 0.5rem;
}

.tc-toc__list li::before {
    content: counter(toc) ".";
    color: var(--tc-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

.tc-toc__list a {
    color: var(--tc-dark-gray);
    font-size: 0.9rem;
}

.tc-toc__list a:hover {
    color: var(--tc-gold);
}

/* Social Share */
.tc-social-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--tc-medium-gray);
    border-bottom: 1px solid var(--tc-medium-gray);
    margin: 2rem 0;
}

.tc-social-share__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tc-navy);
}

.tc-social-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--tc-navy);
    border: 1px solid var(--tc-medium-gray);
    transition: all var(--tc-transition);
    text-decoration: none;
}

.tc-social-share__btn:hover {
    background-color: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-white);
}

.tc-social-share__btn svg {
    width: 16px;
    height: 16px;
}

/* Author Box */
.tc-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--tc-warm-white);
    border-radius: var(--tc-card-radius);
    margin: 2rem 0;
}

.tc-author-box__avatar {
    flex-shrink: 0;
}

.tc-author-box__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.tc-author-box__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tc-author-box__bio {
    font-size: 0.9rem;
    color: var(--tc-text-gray);
    line-height: 1.6;
}

/* Post Navigation */
.tc-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--tc-medium-gray);
}

.tc-post-nav__item {
    padding: 1.25rem;
    border: 1px solid var(--tc-medium-gray);
    border-radius: var(--tc-card-radius);
    transition: all var(--tc-transition);
}

.tc-post-nav__item:hover {
    border-color: var(--tc-gold);
}

.tc-post-nav__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tc-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tc-post-nav__title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.tc-post-nav__item--next {
    text-align: right;
}

/* Related Articles */
.tc-related {
    padding: 3rem 0;
}

.tc-related__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.tc-related__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tc-gold);
    margin-top: 0.75rem;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.tc-archive-header {
    padding: 3rem 0 2rem;
    background: var(--tc-warm-white);
    border-bottom: 1px solid var(--tc-medium-gray);
}

.tc-archive-header__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.tc-archive-header__description {
    font-size: 1.05rem;
    color: var(--tc-text-gray);
    max-width: 700px;
    line-height: 1.7;
}

.tc-archive-header__count {
    font-size: 0.85rem;
    color: var(--tc-text-gray);
    margin-top: 1rem;
}

/* Subcategories */
.tc-subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tc-subcategories__link {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tc-navy);
    background: var(--tc-white);
    border: 1px solid var(--tc-medium-gray);
    border-radius: 100px;
    transition: all var(--tc-transition);
}

.tc-subcategories__link:hover,
.tc-subcategories__link.is-active {
    background: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-navy);
}

/* ============================================
   PAGINATION
   ============================================ */
.tc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.tc-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tc-navy);
    border: 1px solid var(--tc-medium-gray);
    border-radius: 4px;
    transition: all var(--tc-transition);
    text-decoration: none;
}

.tc-pagination .page-numbers:hover {
    border-color: var(--tc-gold);
    color: var(--tc-gold);
}

.tc-pagination .page-numbers.current {
    background: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-navy);
    font-weight: 700;
}

.tc-pagination .page-numbers.dots {
    border: none;
    cursor: default;
}

/* ============================================
   SEARCH RESULTS
   ============================================ */
.tc-search-header {
    padding: 3rem 0 2rem;
    background: var(--tc-warm-white);
    border-bottom: 1px solid var(--tc-medium-gray);
}

.tc-search-header__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.tc-search-header__title span {
    color: var(--tc-gold);
}

.tc-search-header__count {
    font-size: 0.9rem;
    color: var(--tc-text-gray);
}

.tc-search-form-inline {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
}

.tc-search-form-inline input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--tc-medium-gray);
    border-radius: 4px;
    font-family: var(--tc-font-body);
    outline: none;
}

.tc-search-form-inline input[type="search"]:focus {
    border-color: var(--tc-gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 86, 0.1);
}

.tc-search-form-inline button {
    padding: 0.75rem 1.5rem;
    background: var(--tc-gold);
    color: var(--tc-navy);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ============================================
   404 PAGE
   ============================================ */
.tc-404 {
    text-align: center;
    padding: 6rem 1.5rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tc-404__number {
    font-family: var(--tc-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--tc-light-beige);
    line-height: 1;
}

.tc-404__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tc-404__text {
    font-size: 1.1rem;
    color: var(--tc-text-gray);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* ============================================
   SIDEBAR & WIDGETS
   ============================================ */
.tc-sidebar {
    position: sticky;
    top: 100px;
}

.tc-widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--tc-warm-white);
    border-radius: var(--tc-card-radius);
    border: 1px solid var(--tc-medium-gray);
}

.tc-widget__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--tc-gold);
    font-family: var(--tc-font-body);
}

.tc-widget ul {
    list-style: none;
}

.tc-widget ul li {
    margin-bottom: 0.5rem;
}

.tc-widget ul li a {
    font-size: 0.9rem;
    color: var(--tc-dark-gray);
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
    transition: all var(--tc-transition);
}

.tc-widget ul li a:hover {
    color: var(--tc-gold);
    border-bottom-color: var(--tc-medium-gray);
}

/* Newsletter Widget */
.tc-newsletter {
    background: var(--tc-navy);
    color: var(--tc-white);
    padding: 2rem;
    border-radius: var(--tc-card-radius);
    text-align: center;
}

.tc-newsletter__title {
    font-family: var(--tc-font-heading);
    font-size: 1.25rem;
    color: var(--tc-white);
    margin-bottom: 0.5rem;
}

.tc-newsletter__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.tc-newsletter__form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--tc-white);
    margin-bottom: 0.75rem;
    font-family: var(--tc-font-body);
}

.tc-newsletter__form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tc-newsletter__form button {
    width: 100%;
    padding: 0.75rem;
    background: var(--tc-gold);
    color: var(--tc-navy);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--tc-transition);
}

.tc-newsletter__form button:hover {
    background: var(--tc-gold-light);
}

/* ============================================
   COMMENTS
   ============================================ */
.tc-comments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--tc-medium-gray);
}

.tc-comments__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.tc-comments .comment-list {
    list-style: none;
}

.tc-comments .comment {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--tc-medium-gray);
}

.tc-comments .comment-body {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
}

.tc-comments .comment-author img {
    border-radius: 50%;
}

.tc-comments .comment-author .fn {
    font-weight: 700;
    font-size: 0.95rem;
}

.tc-comments .comment-metadata {
    font-size: 0.8rem;
    color: var(--tc-text-gray);
    margin-bottom: 0.5rem;
}

.tc-comments .comment-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--tc-dark-gray);
}

.tc-comments .comment-respond {
    margin-top: 2rem;
}

.tc-comments .comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--tc-navy);
}

.tc-comments .comment-form input[type="text"],
.tc-comments .comment-form input[type="email"],
.tc-comments .comment-form input[type="url"],
.tc-comments .comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--tc-medium-gray);
    border-radius: 4px;
    font-family: var(--tc-font-body);
    margin-bottom: 1rem;
    outline: none;
}

.tc-comments .comment-form input:focus,
.tc-comments .comment-form textarea:focus {
    border-color: var(--tc-gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 86, 0.1);
}

.tc-comments .comment-form .submit {
    padding: 0.75rem 2rem;
    background: var(--tc-gold);
    color: var(--tc-navy);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.tc-footer {
    background-color: var(--tc-navy);
    color: rgba(255, 255, 255, 0.8);
}

.tc-footer__main {
    padding: 4rem 0 3rem;
}

.tc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.tc-footer__brand {
    margin-bottom: 1rem;
}

.tc-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.tc-footer__logo img {
    height: 40px;
}

.tc-footer__logo-text {
    font-family: var(--tc-font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--tc-white);
}

.tc-footer__logo-text span {
    color: var(--tc-gold);
}

.tc-footer__slogan {
    font-size: 0.9rem;
    color: var(--tc-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.tc-footer__about {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.tc-footer__social {
    display: flex;
    gap: 0.75rem;
}

.tc-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--tc-transition);
    text-decoration: none;
}

.tc-footer__social a:hover {
    border-color: var(--tc-gold);
    color: var(--tc-gold);
    background: rgba(196, 154, 86, 0.1);
}

.tc-footer__social a svg {
    width: 16px;
    height: 16px;
}

.tc-footer__heading {
    font-family: var(--tc-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tc-white);
    margin-bottom: 1.25rem;
}

.tc-footer__links {
    list-style: none;
}

.tc-footer__links li {
    margin-bottom: 0.5rem;
}

.tc-footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--tc-transition);
}

.tc-footer__links a:hover {
    color: var(--tc-gold);
}

/* Footer Bottom */
.tc-footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.tc-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.tc-footer__legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.tc-footer__legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.tc-footer__legal a:hover {
    color: var(--tc-gold);
}

/* ============================================
   PAGE TEMPLATE
   ============================================ */
.tc-page {
    padding: 3rem 0;
}

.tc-page__header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.tc-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.tc-page__content {
    max-width: var(--tc-container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tc-page__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--tc-dark-gray);
}

/* ============================================
   DESTINATION TEMPLATE
   ============================================ */
.tc-destination-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: var(--tc-navy);
}

.tc-destination-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tc-destination-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.tc-destination-hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.9), transparent);
}

.tc-destination-hero__country {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--tc-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tc-destination-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--tc-white);
}

/* Info boxes */
.tc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tc-info-box {
    padding: 1.5rem;
    background: var(--tc-warm-white);
    border-radius: var(--tc-card-radius);
    border: 1px solid var(--tc-medium-gray);
}

.tc-info-box__icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.tc-info-box__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--tc-font-body);
}

.tc-info-box__text {
    font-size: 0.875rem;
    color: var(--tc-text-gray);
    line-height: 1.6;
}

/* Timeline */
.tc-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.tc-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--tc-medium-gray);
}

.tc-timeline__item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.tc-timeline__item::before {
    content: '';
    position: absolute;
    left: -2.625rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tc-gold);
    border: 3px solid var(--tc-white);
    box-shadow: 0 0 0 2px var(--tc-gold);
}

.tc-timeline__date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tc-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tc-timeline__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.tc-timeline__text {
    font-size: 0.9rem;
    color: var(--tc-text-gray);
    line-height: 1.6;
}

/* Gallery */
.tc-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tc-gallery__item {
    border-radius: var(--tc-card-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tc-gallery__item:hover img {
    transform: scale(1.05);
}

/* ============================================
   TRAVEL GUIDE
   ============================================ */
.tc-tip-box {
    padding: 1.5rem;
    background: var(--tc-warm-white);
    border-left: 4px solid var(--tc-gold);
    border-radius: 0 var(--tc-card-radius) var(--tc-card-radius) 0;
    margin: 1.5rem 0;
}

.tc-tip-box__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tc-tip-box__text {
    font-size: 0.9rem;
    color: var(--tc-dark-gray);
    line-height: 1.7;
}

/* FAQ */
.tc-faq {
    margin: 2rem 0;
}

.tc-faq__item {
    border: 1px solid var(--tc-medium-gray);
    border-radius: var(--tc-card-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.tc-faq__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--tc-white);
    color: var(--tc-navy);
    border: none;
    font-family: var(--tc-font-body);
}

.tc-faq__question:hover {
    background: var(--tc-warm-white);
}

.tc-faq__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--tc-dark-gray);
    line-height: 1.7;
    display: none;
}

.tc-faq__item.is-open .tc-faq__answer {
    display: block;
}

/* ============================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================ */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    max-width: calc(var(--tc-container-max) - 4rem);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
}

/* WordPress block editor support */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    border-radius: var(--tc-card-radius);
}

.wp-block-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--tc-gold);
    background: var(--tc-warm-white);
    font-family: var(--tc-font-accent);
    font-size: 1.25rem;
    font-style: italic;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--tc-medium-gray);
    margin: 3rem 0;
}

.wp-block-separator.is-style-wide {
    max-width: 100%;
}

.wp-block-separator.is-style-dots::before {
    content: '···';
    font-size: 1.5rem;
    letter-spacing: 1em;
    color: var(--tc-gold);
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-right {
    text-align: right;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .tc-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .tc-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .tc-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .tc-card--horizontal { grid-template-columns: 200px 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --tc-section-spacing: 3rem;
    }

    .tc-header__inner {
        height: 65px;
    }

    .tc-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--tc-white);
        padding: 1.5rem;
        overflow-y: auto;
        z-index: 999;
    }

    .tc-nav.is-active {
        display: block;
    }

    .tc-nav__list {
        flex-direction: column;
        gap: 0;
    }

    .tc-nav__link {
        padding: 0.875rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--tc-medium-gray);
    }

    .tc-nav__item .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--tc-warm-white);
    }

    .tc-header__menu-toggle {
        display: flex;
    }

    .tc-grid--2,
    .tc-grid--3,
    .tc-grid--4 {
        grid-template-columns: 1fr;
    }

    .tc-card--featured {
        grid-column: span 1;
    }

    .tc-card--horizontal {
        grid-template-columns: 1fr;
    }

    .tc-card--horizontal .tc-card__image {
        aspect-ratio: 16/10;
    }

    .tc-hero {
        min-height: 60vh;
    }

    .tc-hero__content {
        padding: 2.5rem 1.5rem;
    }

    .tc-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .tc-footer__legal {
        justify-content: center;
    }

    .tc-post-nav {
        grid-template-columns: 1fr;
    }

    .tc-article__header {
        padding: 2rem 0 1.5rem;
    }

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

    .tc-social-share {
        flex-wrap: wrap;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tc-header__logo-text {
        font-size: 1.25rem;
    }

    .tc-hero__title {
        font-size: 1.75rem;
    }

    .tc-hero__excerpt {
        font-size: 1rem;
    }
}

/* Print */
@media print {
    .tc-header,
    .tc-footer,
    .tc-social-share,
    .tc-related,
    .tc-post-nav,
    .tc-sidebar,
    .tc-newsletter {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .tc-article__content {
        font-size: 12pt;
    }
}
