:root {
    --rt-bg: #fbfaf8;
    --rt-surface: #ffffff;
    --rt-surface-soft: #f3ece5;
    --rt-text: #201d1a;
    --rt-muted: #5f5750;
    --rt-border: #e4d8cd;
    --rt-accent: #b98d6f;
    --rt-accent-dark: #7f5a43;
    --rt-shadow: 0 18px 42px rgba(40, 28, 20, 0.08);
    --rt-radius-lg: 22px;
    --rt-radius-md: 16px;
    --rt-radius-sm: 10px;
    --rt-container: 1180px;
    --rt-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --rt-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --rt-font-brand: ui-serif, Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rt-body {
    margin: 0;
    background: var(--rt-bg);
    color: var(--rt-text);
    font-family: var(--rt-font-body);
    font-size: 16px;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--rt-accent-dark);
}

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

a,
button,
input,
textarea,
select {
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.rt-card:focus-within,
.rt-style-card:focus-within {
    outline: 3px solid rgba(185, 141, 111, 0.36);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rt-container {
    width: min(var(--rt-container), calc(100% - 40px));
    margin: 0 auto;
}

.rt-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 248, 0.94);
    border-bottom: 1px solid var(--rt-border);
    backdrop-filter: blur(18px);
}

.rt-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.rt-brand {
    flex: 0 0 auto;
}

.rt-brand__name {
    font-family: var(--rt-font-brand);
    font-size: clamp(26px, 2.2vw, 32px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--rt-text);
}

.rt-brand__name--footer {
    display: inline-block;
    margin-bottom: 12px;
}

.custom-logo-link img {
    max-width: 190px;
    max-height: 56px;
}

.rt-primary-nav {
    flex: 1 1 auto;
}

.rt-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rt-menu li {
    position: relative;
}

.rt-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #2d2824;
}

.rt-menu > li.menu-item-has-children > a {
    gap: 7px;
}

.rt-menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.rt-menu > li.menu-item-has-children:hover > a::after,
.rt-menu > li.menu-item-has-children:focus-within > a::after,
.rt-menu > li.menu-item-has-children.rt-submenu-open > a::after {
    transform: rotate(225deg) translateY(-1px);
}

.rt-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 70;
    min-width: 240px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-md);
    box-shadow: var(--rt-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.rt-menu .sub-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
}

.rt-menu li:hover > .sub-menu,
.rt-menu li:focus-within > .sub-menu,
.rt-menu li.rt-submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rt-menu .sub-menu a {
    display: flex;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 10px;
}

.rt-menu .sub-menu a:hover {
    background: var(--rt-surface-soft);
}

.rt-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rt-search {
    position: relative;
    display: flex;
    align-items: center;
    width: clamp(220px, 20vw, 280px);
    min-height: 48px;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: 999px;
    overflow: visible;
}

.rt-search__input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 0 0 18px;
    color: var(--rt-text);
    outline: none;
    font-size: 14px;
}

.rt-search__button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--rt-accent-dark);
    font-size: 24px;
    line-height: 1;
}

.rt-button,
.wp-block-button__link,
.rt-play-link span,
.rt-nav-toggle {
    min-width: 48px;
    min-height: 48px;
}

.rt-button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid var(--rt-accent);
    background: var(--rt-accent);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(142, 104, 77, 0.15);
}

.rt-button:hover,
.wp-block-button__link:hover,
.rt-newsletter-form button:hover,
.rt-socials a:hover {
    background: var(--rt-accent-dark);
    color: #fff;
}

.rt-button--header {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
}

.rt-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--rt-border);
    background: var(--rt-surface);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
}

.rt-submenu-toggle {
    display: none;
}

@media (max-width: 860px) {
    .rt-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 48px;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
    }
}

.rt-nav-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--rt-text);
}

.rt-site-main {
    min-height: 60vh;
}

.rt-page {
    padding: 34px 0 70px;
}

.rt-hero {
    position: relative;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
    min-height: 360px;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    box-shadow: var(--rt-shadow);
}

.rt-hero__content {
    position: relative;
    z-index: 2;
    padding: 76px 56px;
}

.rt-hero h1,
.rt-archive-header h1,
.rt-entry-header h1 {
    margin: 0;
    font-family: var(--rt-font-heading);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--rt-text);
}

.rt-hero h1 {
    font-size: clamp(30px, 3.4vw, 44px);
}

.rt-hero p {
    max-width: 430px;
    margin: 24px 0 0;
    color: #3d3834;
    font-size: 20px;
    line-height: 1.45;
}

.rt-hero__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.rt-play-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rt-muted);
    font-size: 14px;
    font-weight: 600;
}

.rt-play-link span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rt-border);
    color: var(--rt-accent-dark);
    background: rgba(255,255,255,0.8);
}

.rt-hero__media {
    min-height: 360px;
}

.rt-hero__image,
.rt-archive-hero__image,
.rt-entry-hero__image,
.rt-page-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    width: 100%;
    background: linear-gradient(135deg, #f6efe7, #e9d9cb 55%, #f9f6f1);
    color: var(--rt-accent-dark);
    font-family: var(--rt-font-heading);
    font-size: 28px;
    letter-spacing: -0.03em;
}

.rt-section {
    margin-top: 46px;
}

.rt-section--first {
    margin-top: 0;
}

.rt-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.rt-section h2,
.rt-section__head h2,
.rt-entry-content h2 {
    margin: 0 0 18px;
    font-family: var(--rt-font-heading);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rt-section__head h2 {
    margin: 0;
}

.rt-section__head a {
    color: var(--rt-accent-dark);
    font-size: 14px;
    font-weight: 700;
}

.rt-grid {
    display: grid;
    gap: 22px;
}

.rt-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rt-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rt-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rt-card {
    position: relative;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(47, 34, 24, 0.05);
    transition: 0.22s ease;
}

.rt-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rt-shadow);
}

.rt-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--rt-surface-soft);
}

.rt-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

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

.rt-card__body {
    position: relative;
    padding: 16px 18px 18px;
}

.rt-card--category .rt-card__body {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
}

.rt-card__title {
    margin: 0;
    color: var(--rt-text);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.rt-card__excerpt {
    margin: 8px 0 0;
    color: var(--rt-muted);
    font-size: 14px;
}

.rt-card__arrow {
    display: inline-flex;
    width: 34px;
    height: 34px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--rt-border);
    border-radius: 50%;
    color: var(--rt-accent-dark);
    font-size: 24px;
    line-height: 1;
}

.rt-card__tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--rt-surface-soft);
    color: var(--rt-accent-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.rt-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: var(--rt-muted);
    font-size: 12px;
}

.rt-style-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.rt-style-card {
    position: relative;
    border-radius: var(--rt-radius-md);
    overflow: hidden;
    border: 1px solid var(--rt-border);
    background: var(--rt-surface);
}

.rt-style-card a {
    display: block;
    position: relative;
    min-height: 150px;
}

.rt-style-card__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.rt-style-card span {
    position: absolute;
    left: 14px;
    bottom: 12px;
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--rt-text);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(47, 34, 24, 0.1);
}

.rt-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--rt-muted);
    font-size: 14px;
}

.rt-breadcrumb a {
    color: var(--rt-muted);
}

.rt-breadcrumb__sep {
    color: #b8ada3;
}

.rt-archive-header,
.rt-entry-header {
    margin-bottom: 32px;
}

.rt-archive-header h1,
.rt-entry-header h1 {
    max-width: 820px;
    font-size: clamp(26px, 3vw, 38px);
}

.rt-archive-header--simple h1 {
    margin-bottom: 14px;
}

.rt-archive-description {
    max-width: 780px;
    color: var(--rt-muted);
}

.rt-archive-hero,
.rt-entry-hero,
.rt-page-banner {
    width: 100%;
    margin-top: 28px;
    border-radius: var(--rt-radius-lg);
    overflow: hidden;
    background: var(--rt-surface-soft);
    border: 1px solid var(--rt-border);
    box-shadow: var(--rt-shadow);
}

.rt-archive-hero,
.rt-entry-hero {
    aspect-ratio: 16 / 6.2;
}

.rt-page-banner {
    aspect-ratio: 16 / 7;
}

.rt-layout {
    display: grid;
    gap: 54px;
    align-items: start;
}

.rt-layout--sidebar {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.rt-layout--full {
    grid-template-columns: minmax(0, 1fr);
}

.rt-layout__aside {
    position: relative;
}

.rt-sidebar {
    position: sticky;
    top: 112px;
}

.rt-sidebar-card {
    padding: 24px;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-lg);
    box-shadow: 0 14px 40px rgba(47, 34, 24, 0.05);
}

.rt-sidebar-card__title {
    margin-bottom: 16px;
    font-family: var(--rt-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--rt-text);
}

.rt-sidebar-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rt-sidebar-list__item a {
    display: grid;
    grid-template-columns: 24px 1fr 16px;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    color: #4b443e;
    font-weight: 600;
}

.rt-sidebar-list__item a:hover,
.rt-sidebar-list__item a:focus-visible,
.rt-sidebar-list__item.rt-is-active a {
    background: var(--rt-surface-soft);
    color: var(--rt-accent-dark);
}

.rt-sidebar-list__icon,
.rt-sidebar-list__arrow {
    color: var(--rt-accent-dark);
}

.rt-entry-meta {
    display: flex;
    gap: 18px;
    margin-top: 16px;
    color: var(--rt-muted);
    font-size: 14px;
}

.rt-entry-content {
    max-width: 100%;
    color: #292521;
    font-size: 17px;
    line-height: 1.72;
}

.rt-entry-content > *:first-child {
    margin-top: 0;
}

.rt-entry-content p {
    margin: 0 0 18px;
}

.rt-entry-content h2 {
    margin-top: 40px;
}

.rt-entry-content h3 {
    margin: 28px 0 12px;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.rt-entry-content ul,
.rt-entry-content ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.rt-entry-content img {
    border-radius: var(--rt-radius-md);
    margin: 26px 0;
}

.rt-entry-content blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    border-left: 4px solid var(--rt-accent);
    background: var(--rt-surface-soft);
    border-radius: 0 var(--rt-radius-md) var(--rt-radius-md) 0;
}

.rt-auto-link {
    color: var(--rt-accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.rt-related-section {
    padding-top: 18px;
    border-top: 1px solid var(--rt-border);
}

.rt-static-article {
    max-width: 980px;
    margin: 0 auto;
}

.rt-entry-header--page h1 {
    font-weight: 700;
}

.rt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
    gap: 48px;
    padding: 54px 0 46px;
}

.rt-site-footer {
    background: linear-gradient(180deg, rgba(255,255,255,0.55), #f4eee8);
    border-top: 1px solid var(--rt-border);
}

.rt-footer-brand p,
.rt-newsletter p {
    color: var(--rt-muted);
    margin: 0 0 18px;
    font-size: 14px;
}

.rt-socials {
    display: flex;
    gap: 10px;
}

.rt-socials a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--rt-border);
    background: var(--rt-surface);
    color: #4b443e;
    font-size: 12px;
    font-weight: 800;
}

.rt-footer-title,
.rt-footer-widget__title {
    margin-bottom: 14px;
    color: var(--rt-text);
    font-family: var(--rt-font-heading);
    font-weight: 700;
}

.rt-footer-nav,
.rt-footer-widgets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.rt-footer-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rt-footer-nav a {
    color: var(--rt-muted);
}

.rt-newsletter-form {
    display: flex;
    border: 1px solid var(--rt-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--rt-surface);
}

.rt-newsletter-form input {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    border: 0;
    padding: 0 14px;
    outline: none;
    background: transparent;
    color: var(--rt-text);
}

.rt-newsletter-form button {
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--rt-accent);
    color: #fff;
    cursor: pointer;
}

.rt-copyright {
    display: flex;
    justify-content: center;
    padding: 18px 0 28px;
    border-top: 1px solid var(--rt-border);
    color: var(--rt-muted);
    font-size: 13px;
}

.rt-pagination {
    margin-top: 38px;
}

.rt-pagination .nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rt-pagination a,
.rt-pagination span {
    display: inline-flex;
    min-width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rt-border);
    border-radius: 10px;
    background: var(--rt-surface);
}

.rt-pagination .current {
    background: var(--rt-accent);
    color: #fff;
    border-color: var(--rt-accent);
}

.rt-empty-state {
    padding: 42px;
    border-radius: var(--rt-radius-lg);
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    text-align: center;
}

.rt-empty-state--large {
    max-width: 760px;
    margin: 40px auto;
}

.rt-empty-state h1 {
    margin: 0 0 16px;
    font-family: var(--rt-font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .rt-header-actions .rt-search {
        display: none;
    }

    .rt-layout--sidebar {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 32px;
    }

    .rt-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rt-style-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .rt-container {
        width: min(100% - 28px, var(--rt-container));
    }

    .rt-header-inner {
        min-height: 72px;
        justify-content: space-between;
    }

    .rt-nav-toggle {
        display: inline-flex;
    }

    .rt-button--header {
        display: none;
    }

    .rt-primary-nav {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 10px;
        background: var(--rt-surface);
        border: 1px solid var(--rt-border);
        border-radius: var(--rt-radius-md);
        box-shadow: var(--rt-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.2s ease;
    }

    .rt-primary-nav.rt-is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .rt-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
        justify-content: stretch;
    }

    .rt-menu li {
        width: 100%;
    }

    .rt-menu a,
    .rt-menu .sub-menu a {
        min-height: 48px;
        width: 100%;
        padding: 0 12px;
        border-radius: 10px;
    }

    .rt-menu > li.menu-item-has-children > a {
        justify-content: space-between;
    }

    .rt-menu > li.menu-item-has-children > a::after {
        margin-left: 8px;
    }

    .rt-menu > li.menu-item-has-children.rt-submenu-open > a::after {
        transform: rotate(45deg) translateY(-2px);
    }

    .rt-menu .sub-menu {
        position: static;
        display: grid;
        gap: 2px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        transition: max-height 0.2s ease;
    }

    .rt-menu .sub-menu::before {
        content: none;
    }

    .rt-menu li.rt-submenu-open > .sub-menu {
        max-height: 480px;
        margin: 2px 0 6px;
    }

    .rt-menu .sub-menu a {
        padding-left: 30px;
    }

    .rt-hero {
        grid-template-columns: 1fr;
    }

    .rt-hero__content {
        padding: 42px 26px;
    }

    .rt-hero__media {
        min-height: 260px;
    }

    .rt-layout--sidebar,
    .rt-footer-grid {
        grid-template-columns: 1fr;
    }

    .rt-sidebar {
        position: static;
    }

    .rt-grid--2,
    .rt-grid--3,
    .rt-grid--4,
    .rt-style-row {
        grid-template-columns: 1fr 1fr;
    }

    .rt-archive-hero,
    .rt-entry-hero,
    .rt-page-banner {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 560px) {
    .rt-page {
        padding-top: 24px;
    }

    .rt-hero__actions,
    .rt-section__head,
    .rt-entry-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .rt-grid--2,
    .rt-grid--3,
    .rt-grid--4,
    .rt-style-row {
        grid-template-columns: 1fr;
    }

    .rt-card--category .rt-card__body {
        min-height: auto;
    }
}

/* ==========================================================================
   Icon system & visual polish — SVG icon set (⌕ › ▶ → ⌂ ➜ f/ig/p replaced),
   plus card/hero/button shadows and the no-image placeholder tile.
   ========================================================================== */

:root {
    --icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    --icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
    --icon-home: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11.5L12 4l8 7.5'/%3E%3Cpath d='M6 10.5V20h5v-6h2v6h5v-9.5'/%3E%3C/svg%3E");
    --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='12' x2='19' y2='12'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E");
    --icon-play: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4v16l14-8z' fill='black'/%3E%3C/svg%3E");
    --icon-send: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11.5L21 3l-8.5 18-2-7.5-7.5-2z' fill='black'/%3E%3C/svg%3E");
    --icon-camera: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='3'/%3E%3Cpath d='M8 7l1.6-2.5h4.8L16 7'/%3E%3Ccircle cx='12' cy='13.5' r='3.5'/%3E%3C/svg%3E");
    --icon-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-7.2 7-12a7 7 0 10-14 0c0 4.8 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
    --icon-video: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='4'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='black' stroke='none'/%3E%3C/svg%3E");
    --icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='15' rx='3'/%3E%3Ccircle cx='9' cy='10' r='1.7'/%3E%3Cpath d='M4 17l5.2-5 4 3.6L17 12l3.5 4.5'/%3E%3C/svg%3E");
}

.rt-icon-mask {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Search */
.rt-search__button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: var(--rt-muted);
    transition: color 0.18s ease;
}

.rt-search__button::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask: var(--icon-search) center / contain no-repeat;
    mask: var(--icon-search) center / contain no-repeat;
}

.rt-search:focus-within {
    border-color: var(--rt-accent);
    box-shadow: 0 0 0 3px rgba(185, 141, 111, 0.16);
}

.rt-search:focus-within .rt-search__button {
    color: var(--rt-accent-dark);
}

.rt-search__suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius-md);
    box-shadow: var(--rt-shadow);
    max-height: 360px;
    overflow-y: auto;
}

.rt-search__suggestions[hidden] {
    display: none;
}

.rt-search__suggestion {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--rt-text);
}

.rt-search__suggestion:hover,
.rt-search__suggestion:focus-visible,
.rt-search__suggestion.rt-is-active {
    background: var(--rt-surface-soft);
    color: var(--rt-accent-dark);
}

.rt-search__suggestion-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.rt-search__suggestion-cat {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--rt-muted);
}

.rt-search__suggestion-empty {
    padding: 10px 12px;
    color: var(--rt-muted);
    font-size: 14px;
}

/* Card arrow (category cards) */
.rt-card__arrow {
    font-size: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.rt-card__arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background-color: currentColor;
    -webkit-mask: var(--icon-chevron) center / contain no-repeat;
    mask: var(--icon-chevron) center / contain no-repeat;
}

.rt-card--category:hover .rt-card__arrow {
    background: var(--rt-accent);
    border-color: var(--rt-accent);
    color: #fff;
    transform: translateX(2px);
}

/* Sidebar list icons */
.rt-sidebar-list__icon,
.rt-sidebar-list__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    opacity: 0.85;
}

.rt-sidebar-list__icon::before {
    content: "";
    width: 17px;
    height: 17px;
    background-color: currentColor;
    -webkit-mask: var(--icon-home) center / contain no-repeat;
    mask: var(--icon-home) center / contain no-repeat;
}

.rt-sidebar-list__arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: currentColor;
    -webkit-mask: var(--icon-chevron) center / contain no-repeat;
    mask: var(--icon-chevron) center / contain no-repeat;
    transition: transform 0.18s ease;
}

.rt-sidebar-list__item a:hover .rt-sidebar-list__arrow::before,
.rt-sidebar-list__item.rt-is-active .rt-sidebar-list__arrow::before {
    transform: translateX(2px);
}

/* "Xem tất cả →" links */
.rt-section__head a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.18s ease, color 0.18s ease;
}

.rt-section__head a span {
    display: inline-flex;
    width: 15px;
    height: 15px;
    font-size: 0;
}

.rt-section__head a span::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: var(--icon-arrow) center / contain no-repeat;
    mask: var(--icon-arrow) center / contain no-repeat;
}

.rt-section__head a:hover {
    gap: 10px;
}

/* Hero play link */
.rt-play-link span {
    font-size: 0;
}

.rt-play-link span::before {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 2px;
    background-color: currentColor;
    -webkit-mask: var(--icon-play) center / contain no-repeat;
    mask: var(--icon-play) center / contain no-repeat;
}

.rt-play-link {
    transition: color 0.18s ease;
}

.rt-play-link:hover span {
    background: var(--rt-accent);
    border-color: var(--rt-accent);
    color: #fff;
}

/* Newsletter submit */
.rt-newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: background-color 0.18s ease;
}

.rt-newsletter-form button::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-mask: var(--icon-send) center / contain no-repeat;
    mask: var(--icon-send) center / contain no-repeat;
}

/* Footer social icons — generic, non-branded pictograms for consistent weight */
.rt-socials a {
    font-size: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.rt-socials a::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.rt-socials a:nth-child(1)::before {
    content: none;
}

.rt-socials a:nth-child(1)::after {
    content: "F";
    font-size: 14px;
    font-weight: 800;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.rt-socials a:nth-child(2)::before {
    -webkit-mask-image: var(--icon-camera);
    mask-image: var(--icon-camera);
}

.rt-socials a:nth-child(3)::before {
    -webkit-mask-image: var(--icon-pin);
    mask-image: var(--icon-pin);
}

.rt-socials a:nth-child(4)::before {
    -webkit-mask-image: var(--icon-video);
    mask-image: var(--icon-video);
}

.rt-socials a:hover {
    transform: translateY(-2px);
}

/* Breadcrumb separator */
.rt-breadcrumb__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    font-size: 0;
    opacity: 0.55;
}

.rt-breadcrumb__sep::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask: var(--icon-chevron) center / contain no-repeat;
    mask: var(--icon-chevron) center / contain no-repeat;
}

/* --------------------------------------------------------------------
   No-image placeholder — a considered "no photo yet" tile instead of a
   loud, oversized brand wordmark repeated across every card.
   -------------------------------------------------------------------- */
.rt-image-placeholder {
    position: relative;
    flex-direction: column;
    gap: 10px;
    background:
        radial-gradient(circle at 22px 22px, rgba(142, 104, 77, 0.08) 1.6px, transparent 1.6px) 0 0 / 22px 22px,
        linear-gradient(150deg, #f7f0e8, #ece0d2 60%, #f8f4ee);
}

.rt-image-placeholder::before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--rt-accent-dark);
    opacity: 0.4;
    -webkit-mask: var(--icon-image) center / contain no-repeat;
    mask: var(--icon-image) center / contain no-repeat;
}

.rt-image-placeholder span {
    font-family: var(--rt-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rt-accent-dark);
    opacity: 0.55;
}

.rt-hero__image.rt-image-placeholder::before {
    width: 46px;
    height: 46px;
}

.rt-hero__image.rt-image-placeholder span {
    font-size: 14px;
}

.rt-style-card__image.rt-image-placeholder {
    gap: 6px;
}

.rt-style-card__image.rt-image-placeholder::before {
    width: 22px;
    height: 22px;
}

.rt-style-card__image.rt-image-placeholder span {
    font-size: 10px;
}

/* --------------------------------------------------------------------
   General polish: nav feedback, softer/tighter shadows, calmer motion
   -------------------------------------------------------------------- */
.rt-menu > li > a {
    position: relative;
}

.rt-menu > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 2px;
    background: var(--rt-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.rt-menu > li > a:hover::before,
.rt-menu > li > a:focus-visible::before {
    transform: scaleX(1);
}

.rt-card {
    box-shadow: 0 1px 2px rgba(40, 28, 20, 0.04), 0 12px 28px rgba(40, 28, 20, 0.05);
}

.rt-card:hover {
    box-shadow: 0 2px 4px rgba(40, 28, 20, 0.06), 0 18px 34px rgba(40, 28, 20, 0.09);
}

.rt-hero,
.rt-sidebar-card,
.rt-archive-hero,
.rt-entry-hero,
.rt-page-banner {
    box-shadow: 0 1px 2px rgba(40, 28, 20, 0.04), 0 16px 36px rgba(40, 28, 20, 0.06);
}

.rt-button,
.wp-block-button__link {
    box-shadow: 0 1px 2px rgba(142, 104, 77, 0.12), 0 8px 18px rgba(142, 104, 77, 0.14);
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rt-button:hover,
.wp-block-button__link:hover {
    box-shadow: 0 2px 4px rgba(142, 104, 77, 0.14), 0 10px 22px rgba(142, 104, 77, 0.18);
    transform: translateY(-1px);
}

.rt-style-card span {
    box-shadow: 0 1px 2px rgba(40, 28, 20, 0.06), 0 8px 20px rgba(40, 28, 20, 0.08);
}

.rt-style-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rt-style-card:hover {
    box-shadow: 0 2px 4px rgba(40, 28, 20, 0.06), 0 14px 30px rgba(40, 28, 20, 0.1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}
