/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
a:hover { opacity: 0.7; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* === SKIP LINK & SCREEN READER === */
.stb-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--color-text-dark);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}
.stb-skip-link:focus { top: 8px; }
.stb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === FOCUS VISIBLE === */
:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* === CONTAINER === */
.stb-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* === LAYOUT: MAIN + SIDEBAR === */
.stb-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.stb-main { flex: 1; min-width: 0; }
.stb-sidebar { width: 340px; flex-shrink: 0; }

/* === SECTIONS === */
.stb-section { padding: 40px 0; }
.stb-layout--padded { padding: 32px 0; }

/* === WIDGET TITLES — underline left-to-right === */
.stb-widget-title {
    padding-bottom: 12px;
    position: relative;
}
.stb-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

/* === SECTION TITLES (Gillion style) === */
.stb-section-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    position: relative;
}
.stb-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

/* === BUTTONS (black/white) === */
.stb-btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
}
.stb-btn:hover { background: #1a1a1a; color: #fff; }
.stb-btn-primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.stb-btn-primary:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* === GRIDS === */
.stb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.stb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* === CARDS (Gillion Foodie) === */
.stb-card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}
.stb-card-thumb { margin-bottom: 16px; overflow: hidden; }
.stb-card-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.stb-card:hover .stb-card-thumb img { transform: scale(1.03); }
.stb-card-thumb-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    background: var(--color-surface);
}

.stb-card-category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    background: #1a1a1a;
    color: #fff !important;
    padding: 4px 10px;
    transition: background 0.2s ease;
}
.stb-card-category:hover {
    background: #333;
    color: #fff;
}
.stb-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.stb-card-title a { color: inherit; }
.stb-card-title a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; opacity: 1; }
.stb-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 12px;
}
.stb-card-meta {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.stb-card-meta-author { font-weight: 500; }
.stb-meta-sep { color: var(--color-text-light); }
.stb-meta-reading {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 8px;
}
.stb-meta-reading svg { opacity: 0.6; }
.stb-avatar { border-radius: 50%; vertical-align: middle; margin-right: 6px; }

/* === FEATURED POST (big first post on homepage) === */
.stb-featured-post {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}
.stb-featured-thumb { margin-bottom: 16px; overflow: hidden; }
.stb-featured-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.stb-featured-post:hover .stb-featured-thumb img { transform: scale(1.02); }
.stb-featured-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}
.stb-featured-title a { color: inherit; }
.stb-featured-title a:hover { text-decoration: underline; text-underline-offset: 3px; opacity: 1; }
.stb-featured-meta {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 16px;
}
.stb-featured-excerpt {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}
.stb-featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stb-read-more {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 2px;
}
.stb-read-more:hover { opacity: 1; }
.stb-share-icons {
    display: flex;
    gap: 16px;
}
.stb-share-icons a {
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}
.stb-share-icons a:hover { opacity: 0.5; }

/* === SIDEBAR === */
.stb-sidebar-inner { padding: 0; }
.stb-widget { margin-bottom: 32px; }
.stb-widget-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

/* Author widget */
.stb-author-widget { text-align: center; }
.stb-author-widget-img { border-radius: 0; margin: 0 auto 16px; }
.stb-author-widget-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 16px;
}

.stb-sidebar-inner { padding: 0; }

/* Popular posts widget */
.stb-popular-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.stb-popular-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.stb-popular-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}
.stb-popular-thumb img { width: 100%; height: 100%; object-fit: cover; }
.stb-popular-content { flex: 1; min-width: 0; }
.stb-popular-title {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.stb-popular-title a { color: inherit; }
.stb-popular-title a:hover { text-decoration: underline; text-underline-offset: 2px; opacity: 1; }
.stb-popular-cat {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}
.stb-popular-meta {
    font-size: 0.6875rem;
    color: var(--color-text-secondary);
    display: flex;
    gap: 10px;
}
.stb-popular-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* Categories widget */
.stb-cat-list { list-style: none; padding: 0; }
.stb-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
}
.stb-cat-list li:last-child { border-bottom: none; }
.stb-cat-list a { color: var(--color-text-dark); }
.stb-cat-list a:hover { text-decoration: underline; opacity: 1; }
.stb-cat-count {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* === BREADCRUMBS BAR (Gillion style) === */
.stb-breadcrumbs-bar {
    background: var(--color-surface);
    padding: 16px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--color-border);
}
.stb-breadcrumbs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stb-breadcrumbs-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}
.stb-breadcrumbs {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}
.stb-breadcrumbs a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 2px; }
.stb-breadcrumbs a:hover { text-decoration: underline; }
.stb-sep { margin: 0 6px; color: var(--color-text-light); }

/* === PAGINATION === */
.stb-pagination { margin: 40px 0 0; text-align: center; }
.stb-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.stb-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
    text-decoration: none;
    opacity: 1;
}
.stb-pagination a.page-numbers:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    opacity: 1;
}
.stb-pagination .page-numbers.current {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.stb-pagination .page-numbers.dots { border: none; }
/* UL list variant (front-page paginate_links type=list) */
.stb-pagination ul.page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    border: none;
    min-width: auto;
    height: auto;
}
.stb-pagination ul.page-numbers li { display: inline-block; }

/* === SINGLE ARTICLE === */
.stb-single-thumb { margin-bottom: 20px; }
.stb-single-thumb img { width: 100%; height: auto; }
.stb-single-header { margin-bottom: 24px; }
.stb-single-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}
.stb-single-meta {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.stb-single-meta-author { font-weight: 500; }

/* Content styles */
.stb-single-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}
.stb-single-content p { margin-bottom: 1.5em; }
.stb-single-content h2 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 2em 0 0.75em;
}
.stb-single-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 1.5em 0 0.5em;
}
.stb-single-content img { margin: 1.5em 0; border-radius: 0; }
.stb-single-content ul, .stb-single-content ol {
    margin: 1em 0 1.5em 1.25em;
    list-style: disc;
}
.stb-single-content ol { list-style: decimal; }
.stb-single-content li { margin-bottom: 0.5em; }
.stb-single-content blockquote {
    border-left: 3px solid #1a1a1a;
    padding: 12px 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--color-text-dark);
    background: var(--color-surface);
}
.stb-single-content a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 3px; }
.stb-single-content a:hover { color: #000; }

/* Drop cap (Gillion style) */
.stb-single-content > p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 12px 0 0;
    padding-top: 4px;
}

/* Tags */
.stb-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}
.stb-tag-pill {
    display: inline-block;
    padding: 4px 13px;
    font-size: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}
.stb-tag-pill:hover {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

/* Prev/Next navigation */
.stb-post-nav {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.stb-post-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 4px;
    background: var(--color-surface);
    transition: box-shadow 0.3s ease;
}
.stb-post-nav-link:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.stb-post-nav-next { justify-content: flex-end; text-align: right; }
.stb-post-nav-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}
.stb-post-nav-thumb img { width: 100%; height: 100%; object-fit: cover; }
.stb-post-nav-label {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.stb-post-nav-title {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: block;
    margin-top: 4px;
}

/* Author bio box */
.stb-author-box {
    text-align: center;
    padding: 32px 24px;
    margin: 32px 0;
    border-top: 1px solid var(--color-border);
}
.stb-author-avatar { margin-bottom: 12px; }
.stb-author-img { border-radius: 50%; margin: 0 auto; }
.stb-author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.stb-author-bio {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* Related posts */
.stb-related-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.stb-related-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.stb-related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1a1a1a, transparent);
}
.stb-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.stb-related-thumb { overflow: hidden; margin-bottom: 10px; }
.stb-related-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.stb-related-card:hover .stb-related-thumb img { transform: scale(1.03); }
.stb-related-card-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.stb-related-card-title a { color: inherit; }
.stb-related-card-title a:hover { text-decoration: underline; text-underline-offset: 3px; opacity: 1; }

/* === TOC === */
.stb-toc {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 20px 24px;
    margin-bottom: 24px;
}
.stb-toc-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stb-toc-toggle { font-size: 0.75rem; transition: transform 0.2s; }
.stb-toc.collapsed .stb-toc-toggle { transform: rotate(-90deg); }
.stb-toc.collapsed .stb-toc-list { display: none; }
.stb-toc-list {
    margin-top: 12px;
    padding-left: 20px;
    list-style: decimal;
}
.stb-toc-list li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}
.stb-toc-list a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 2px; }
.stb-toc-list a:hover { text-decoration: underline; }

/* === 404 === */
.stb-404-section {
    text-align: center;
    padding: 80px 0;
}
.stb-404-section h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.stb-404-section p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* === SEARCH FORM === */
.stb-search-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto 16px;
}
.stb-search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

/* === CONTACT FORM === */
.stb-contact-form { max-width: 700px; }
.stb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.stb-form-group { margin-bottom: 16px; }
.stb-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.stb-form-group input,
.stb-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: border-color 0.2s;
}
.stb-form-group input:focus,
.stb-form-group textarea:focus {
    border-color: var(--color-primary);
}
.stb-form-group input:focus:not(:focus-visible),
.stb-form-group textarea:focus:not(:focus-visible) {
    outline: none;
}
.stb-form-status { margin-top: 12px; font-size: 0.875rem; }
.stb-contact-info { margin-top: 32px; font-size: 0.875rem; color: var(--color-text); }

/* === PAGE CONTENT === */
.stb-page-content { line-height: 1.8; }
.stb-page-content h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}
.stb-page-content p { margin-bottom: 1.5em; }

/* === COMMENTS === */
.stb-comments-section { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.stb-comments-section h2,
.stb-comments-section .comments-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.comment-author { font-weight: 600; font-size: 0.875rem; }
.comment-metadata { font-size: 0.75rem; color: var(--color-text-secondary); margin-bottom: 8px; }
.comment-content p { font-size: 0.875rem; margin-bottom: 8px; }
.comment-respond { margin-top: 24px; }
.comment-respond .comment-reply-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}
.comment-form-comment textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 12px;
}
.comment-form .submit {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
}
.comment-form .submit:hover { background: #000; border-color: #000; }

/* === NO RESULTS === */
.stb-no-results {
    text-align: center;
    padding: 48px 0;
}
.stb-no-results h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}
.stb-no-results p {
    color: var(--color-text);
    margin-bottom: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .stb-layout { gap: 24px; }
    .stb-sidebar { width: 300px; }
    .stb-hero-grid { grid-template-columns: 1fr 1fr; }
    .stb-hero-card:nth-child(3) { grid-column: 1 / -1; }
    .stb-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stb-layout {
        flex-direction: column;
        gap: 32px;
    }
    .stb-sidebar { width: 100%; }
    .stb-grid-2 { grid-template-columns: 1fr; }
    .stb-grid-3 { grid-template-columns: 1fr; }
    .stb-hero-grid { grid-template-columns: 1fr; }
    .stb-related-grid { grid-template-columns: 1fr; }
    .stb-post-nav { flex-direction: column; }
    .stb-form-row { grid-template-columns: 1fr; }
    .stb-breadcrumbs-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
    .stb-subscribe-inner { flex-direction: column; gap: 16px; text-align: center; }
    .stb-subscribe-form { flex-direction: column; width: 100%; }
    .stb-footer-widgets { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stb-container { padding: 0 12px; }
    .stb-featured-title { font-size: 1.25rem; }
    .stb-single-title { font-size: 1.375rem; }
    .stb-hero-card-title { font-size: 1rem; }
}
