/*
Theme Name: The Balcony Stories
Theme URI: https://thebalconystories.com
Author: Inbide Digital
Author URI: https://inbide.com
Description: Premium magazine theme for The Balcony Stories
Version: 3.0.0
Text Domain: tbs
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --tbs-primary: #2D2D2D;
    --tbs-text: #545454;
    --tbs-accent: #DBB764;
    --tbs-accent-hover: #C9A855;
    --tbs-bg: #F6F6F6;
    --tbs-light: #999999;
    --tbs-white: #FFFFFF;
    --tbs-border: #E8E8E8;
    --tbs-font-heading: 'Playfair Display', Georgia, serif;
    --tbs-font-body: 'Inter', -apple-system, sans-serif;
}

/* ========================================
   RESET & BASE
======================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
    font-family: var(--tbs-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--tbs-text);
    background: var(--tbs-white);
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--tbs-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tbs-font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--tbs-primary);
}

/* ========================================
   LAYOUT
======================================== */
.tbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tbs-section {
    padding: 60px 0;
}

.tbs-section-gray {
    background: var(--tbs-bg);
}

/* ========================================
   HEADER
======================================== */
.tbs-header {
    background: var(--tbs-white);
    border-bottom: 1px solid var(--tbs-border);
}

.tbs-header-top {
    background: var(--tbs-bg);
    padding: 15px 0;
}

.tbs-header-top .tbs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbs-promo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--tbs-white);
    padding: 10px 15px;
    border-radius: 4px;
}

.tbs-promo-box img {
    width: 60px;
    height: 80px;
    object-fit: cover;
}

.tbs-promo-content span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tbs-light);
}

.tbs-promo-content strong {
    display: block;
    font-size: 13px;
    color: var(--tbs-primary);
}

.tbs-promo-btn {
    display: inline-block;
    background: var(--tbs-accent);
    color: var(--tbs-primary);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 3px;
    margin-top: 5px;
}

.tbs-logo-center {
    text-align: center;
}

.tbs-logo-center img {
    max-height: 80px;
}

.tbs-logo-text {
    font-family: var(--tbs-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--tbs-primary);
    letter-spacing: 2px;
}

.tbs-social-icons {
    display: flex;
    gap: 15px;
}

.tbs-social-icons a {
    color: var(--tbs-primary);
    font-size: 16px;
}

.tbs-header-nav {
    padding: 15px 0;
    border-top: 1px solid var(--tbs-border);
}

.tbs-header-nav .tbs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbs-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.tbs-main-nav ul {
    display: flex;
    gap: 30px;
}

.tbs-main-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tbs-primary);
    padding: 10px 0;
}

.tbs-main-nav a:hover,
.tbs-main-nav .current-menu-item a {
    color: var(--tbs-accent);
}

.tbs-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* ========================================
   TICKER / SCROLLING CAROUSEL
======================================== */
.tbs-ticker {
    background: var(--tbs-primary);
    overflow: hidden;
    padding: 0;
}

.tbs-ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
}

.tbs-ticker-track:hover {
    animation-play-state: paused;
}

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

.tbs-ticker-item {
    flex: 0 0 320px;
    padding: 20px 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.tbs-ticker-item a {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tbs-ticker-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}

.tbs-ticker-thumb img {
    width: 100px;
    height: 70px;
    object-fit: cover;
}

.tbs-ticker-thumb-placeholder {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #444 0%, #555 100%);
    border-radius: 4px;
}

.tbs-ticker-content {
    flex: 1;
    min-width: 0;
}

.tbs-ticker-cat {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tbs-accent);
    margin-bottom: 5px;
}

.tbs-ticker-title {
    font-family: var(--tbs-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--tbs-white);
    line-height: 1.4;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tbs-ticker-date {
    font-size: 11px;
    color: var(--tbs-light);
}

/* ========================================
   HERO SECTION
======================================== */
.tbs-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 500px;
}

.tbs-hero-main {
    position: relative;
    overflow: hidden;
    background: #333;
}

.tbs-hero-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbs-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.tbs-hero-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--tbs-accent);
    margin-bottom: 15px;
}

.tbs-hero-title {
    font-size: 36px;
    color: var(--tbs-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tbs-hero-title a { color: inherit; }

.tbs-btn {
    display: inline-block;
    background: var(--tbs-accent);
    color: var(--tbs-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 4px;
}

.tbs-btn:hover {
    background: var(--tbs-accent-hover);
    color: var(--tbs-primary);
}

.tbs-hero-sidebar {
    background: var(--tbs-white);
    padding: 25px;
}

.tbs-hero-post {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--tbs-border);
    align-items: flex-start;
}

.tbs-hero-post:first-child { padding-top: 0; }
.tbs-hero-post:last-child { border-bottom: none; }

.tbs-hero-num {
    font-family: var(--tbs-font-heading);
    font-size: 28px;
    color: var(--tbs-accent);
    line-height: 1;
    flex: 0 0 35px;
}

.tbs-hero-post-content {
    flex: 1;
    min-width: 0;
}

.tbs-hero-post-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tbs-hero-post-content h4 a { color: var(--tbs-primary); }
.tbs-hero-post-content h4 a:hover { color: var(--tbs-accent); }

.tbs-meta {
    font-size: 12px;
    color: var(--tbs-light);
}

/* ========================================
   SECTION HEADER
======================================== */
.tbs-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tbs-section-title {
    display: inline-block;
    font-family: var(--tbs-font-body);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tbs-primary);
    position: relative;
    padding: 0 25px;
}

.tbs-section-title::before,
.tbs-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--tbs-border);
}

.tbs-section-title::before { right: 100%; }
.tbs-section-title::after { left: 100%; }

/* ========================================
   POST GRID (3 columns)
======================================== */
.tbs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tbs-card {}

.tbs-card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
}

.tbs-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.tbs-card:hover .tbs-card-image img {
    transform: scale(1.05);
}

.tbs-card-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
}

.tbs-card-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tbs-accent);
    margin-bottom: 10px;
}

.tbs-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tbs-card h3 a { color: var(--tbs-primary); }
.tbs-card h3 a:hover { color: var(--tbs-accent); }

/* ========================================
   FEATURED LAYOUT (Large + Small list)
======================================== */
.tbs-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tbs-featured-large .tbs-card-image img {
    height: 350px;
}

.tbs-featured-large .tbs-card-placeholder {
    height: 350px;
}

.tbs-featured-large h3 {
    font-size: 24px;
}

.tbs-featured-large .tbs-excerpt {
    font-size: 14px;
    color: var(--tbs-text);
    line-height: 1.7;
    margin: 15px 0;
}

.tbs-read-more {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tbs-accent);
}

.tbs-featured-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tbs-featured-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tbs-featured-item-image {
    flex: 0 0 180px;
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
}

.tbs-featured-item-image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
}

.tbs-featured-item-placeholder {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    border-radius: 4px;
}

.tbs-featured-item-content {
    flex: 1;
    min-width: 0;
}

.tbs-featured-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tbs-featured-item-content h4 a { color: var(--tbs-primary); }
.tbs-featured-item-content h4 a:hover { color: var(--tbs-accent); }

/* ========================================
   LATEST POSTS (List + Sidebar)
======================================== */
.tbs-latest-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.tbs-post-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--tbs-border);
    align-items: flex-start;
}

.tbs-post-item:first-child { padding-top: 0; }

.tbs-post-item-image {
    flex: 0 0 200px;
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}

.tbs-post-item-image img {
    width: 200px;
    height: 140px;
    object-fit: cover;
}

.tbs-post-item-placeholder {
    width: 200px;
    height: 140px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    border-radius: 4px;
}

.tbs-post-item-content {
    flex: 1;
    min-width: 0;
}

.tbs-post-item-content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tbs-post-item-content h3 a { color: var(--tbs-primary); }
.tbs-post-item-content h3 a:hover { color: var(--tbs-accent); }

.tbs-post-item-content .tbs-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tbs-text);
    margin: 10px 0;
}

/* ========================================
   SIDEBAR
======================================== */
.tbs-sidebar {
    position: sticky;
    top: 30px;
}

.tbs-widget {
    background: var(--tbs-white);
    border: 1px solid var(--tbs-border);
    padding: 25px;
    margin-bottom: 30px;
}

.tbs-widget:last-child { margin-bottom: 0; }

.tbs-widget-logo {
    font-family: var(--tbs-font-heading);
    font-size: 22px;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tbs-widget h4 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.tbs-widget p {
    font-size: 13px;
    color: var(--tbs-light);
    text-align: center;
    margin-bottom: 20px;
}

.tbs-widget input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--tbs-border);
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.tbs-widget button {
    width: 100%;
    background: var(--tbs-accent);
    color: var(--tbs-primary);
    border: none;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
}

.tbs-widget-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--tbs-border);
    text-align: left;
}

.tbs-widget-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.tbs-widget-post:last-child { margin-bottom: 0; }

.tbs-widget-post-image {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}

.tbs-widget-post-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.tbs-widget-post-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tbs-accent) 0%, var(--tbs-accent-hover) 100%);
    border-radius: 4px;
}

.tbs-widget-post-content {
    flex: 1;
    min-width: 0;
}

.tbs-widget-post-content h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.tbs-widget-post-content h5 a { color: var(--tbs-primary); }
.tbs-widget-post-content h5 a:hover { color: var(--tbs-accent); }

/* ========================================
   POPULAR GRID (Circular images)
======================================== */
.tbs-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tbs-popular-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tbs-popular-item-image {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
}

.tbs-popular-item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.tbs-popular-item-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--tbs-accent) 0%, var(--tbs-accent-hover) 100%);
    border-radius: 50%;
}

.tbs-popular-item-content {
    flex: 1;
    min-width: 0;
}

.tbs-popular-item-content h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.tbs-popular-item-content h4 a { color: var(--tbs-primary); }
.tbs-popular-item-content h4 a:hover { color: var(--tbs-accent); }

/* ========================================
   BANNER
======================================== */
.tbs-banner {
    background: var(--tbs-bg);
    padding: 50px 20px;
    text-align: center;
}

.tbs-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tbs-banner-logo {
    font-family: var(--tbs-font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--tbs-primary);
}

.tbs-banner-inner > div:last-child {
    text-align: left;
}

.tbs-banner h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ========================================
   FOOTER
======================================== */
.tbs-footer {
    background: var(--tbs-bg);
    padding: 60px 0 30px;
}

.tbs-footer-newsletter {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tbs-border);
    margin-bottom: 40px;
}

.tbs-footer-newsletter h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tbs-footer-newsletter p {
    color: var(--tbs-light);
    margin-bottom: 20px;
}

.tbs-footer-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.tbs-footer-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--tbs-border);
    border-radius: 4px;
    font-size: 14px;
}

.tbs-footer-form button {
    background: var(--tbs-accent);
    color: var(--tbs-primary);
    border: none;
    padding: 14px 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
}

.tbs-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbs-footer-nav ul {
    display: flex;
    gap: 25px;
}

.tbs-footer-nav a {
    font-size: 13px;
    color: var(--tbs-text);
}

.tbs-footer-logo {
    font-family: var(--tbs-font-heading);
    font-size: 24px;
    letter-spacing: 3px;
}

.tbs-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--tbs-border);
    font-size: 13px;
    color: var(--tbs-light);
}

/* ========================================
   SINGLE POST
======================================== */
.tbs-single-header {
    text-align: center;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.tbs-single-header .tbs-card-cat {
    margin-bottom: 20px;
}

.tbs-single-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tbs-single-image {
    margin-bottom: 40px;
}

.tbs-single-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.tbs-single-content {
    max-width: 750px;
    margin: 0 auto;
}

.tbs-single-content p {
    margin-bottom: 1.5em;
    font-size: 17px;
    line-height: 1.8;
}

.tbs-single-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.tbs-single-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

/* ========================================
   ARCHIVE
======================================== */
.tbs-archive-header {
    background: var(--tbs-bg);
    padding: 60px 0;
    text-align: center;
}

.tbs-archive-header h1 {
    font-size: 36px;
}

.tbs-archive-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.tbs-archive-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .tbs-hero {
        grid-template-columns: 1fr;
    }
    
    .tbs-hero-sidebar {
        display: none;
    }
    
    .tbs-grid-3,
    .tbs-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tbs-featured-grid,
    .tbs-latest-grid,
    .tbs-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .tbs-sidebar {
        display: none;
    }
    
    .tbs-promo-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .tbs-grid-3,
    .tbs-popular-grid,
    .tbs-archive-posts {
        grid-template-columns: 1fr;
    }
    
    .tbs-featured-item,
    .tbs-post-item {
        flex-direction: column;
    }
    
    .tbs-featured-item-image,
    .tbs-post-item-image {
        width: 100%;
        flex: none;
    }
    
    .tbs-featured-item-image img,
    .tbs-post-item-image img {
        width: 100%;
        height: 200px;
    }
    
    .tbs-main-nav {
        display: none;
    }
    
    .tbs-hero-title {
        font-size: 28px;
    }
    
    .tbs-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .tbs-footer-form {
        flex-direction: column;
    }
    
    .tbs-ticker-item {
        flex: 0 0 280px;
    }
}

/* ========================================
   MOBILE MENU
======================================== */
.tbs-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--tbs-white);
    z-index: 1000;
    transition: left 0.3s;
    overflow-y: auto;
    padding: 20px;
}

.tbs-mobile-menu.active {
    left: 0;
}

.tbs-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.tbs-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tbs-mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.tbs-mobile-menu ul {
    margin-top: 50px;
}

.tbs-mobile-menu li {
    border-bottom: 1px solid var(--tbs-border);
}

.tbs-mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   SEARCH OVERLAY
======================================== */
.tbs-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.tbs-search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.tbs-search-overlay-form {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.tbs-search-overlay-form input {
    width: 100%;
    padding: 20px;
    border: none;
    border-bottom: 2px solid var(--tbs-primary);
    font-size: 24px;
    font-family: var(--tbs-font-heading);
    background: transparent;
}

.tbs-search-overlay-form input:focus {
    outline: none;
    border-color: var(--tbs-accent);
}

/* ========================================
   404 PAGE
======================================== */
.tbs-404 {
    text-align: center;
    padding: 100px 20px;
}

.tbs-404 h1 {
    font-size: 120px;
    color: var(--tbs-accent);
    line-height: 1;
    margin-bottom: 20px;
}

.tbs-404 h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.tbs-404 p {
    color: var(--tbs-light);
    margin-bottom: 30px;
}
