/*
 * blog.css — Rose Travel · Travel Blog (listing + single post)
 * Loaded only on blog views (see inc/enqueue.php → rt_is_blog_view()).
 */

:root {
	--rtb-red: #b5232a;
	--rtb-red-dark: #8b141c;
	--rtb-cream: #fdf8f1;
	--rtb-ink: #24272c;
	--rtb-text: #5f615e;
	--rtb-muted: #8a8c8a;
	--rtb-line: #ececec;
	--rtb-radius: 18px;
	--rtb-shadow: 0 10px 30px rgba(36, 39, 44, .08);
	--rtb-shadow-hover: 0 18px 44px rgba(36, 39, 44, .16);
}

/* ── Shared ───────────────────────────────────────────────────────────────── */
.rt-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 26px; border-radius: 999px;
	background: var(--rtb-red); color: #fff !important;
	font-weight: 600; font-size: .95rem; line-height: 1; text-decoration: none;
	border: 1.5px solid var(--rtb-red);
	transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.rt-btn:hover { background: var(--rtb-red-dark); border-color: var(--rtb-red-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(181, 35, 42, .28); }
.rt-btn--light { background: #fff; color: var(--rtb-red) !important; border-color: #fff; }
.rt-btn--light:hover { background: var(--rtb-cream); border-color: var(--rtb-cream); color: var(--rtb-red-dark) !important; }
.rt-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .6); }
.rt-btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.rt-crumbs { text-shadow: 0 1px 8px rgba(0, 0, 0, .55); display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; font-size: .85rem; color: rgba(255, 255, 255, .8); margin-bottom: 18px; }
.rt-crumbs a { color: rgba(255, 255, 255, .85); text-decoration: none; transition: color .2s; }
.rt-crumbs a:hover { color: #fff; text-decoration: underline; }
.rt-crumbs i { font-size: .7rem; opacity: .7; }
.rt-crumbs span { color: #fff; font-weight: 500; }

.rt-chip {
	display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
	padding: 9px 18px; border-radius: 999px;
	background: #fff; border: 1.5px solid var(--rtb-line);
	color: var(--rtb-ink); font-size: .9rem; font-weight: 500; text-decoration: none; white-space: nowrap;
	transition: border-color .2s, color .2s, background .2s;
}
.rt-chip span { font-size: .75rem; min-width: 22px; padding: 2px 7px; border-radius: 999px; background: var(--rtb-cream); color: var(--rtb-text); text-align: center; }
.rt-chip:hover { border-color: var(--rtb-red); color: var(--rtb-red); }
.rt-chip.is-active { background: var(--rtb-red); border-color: var(--rtb-red); color: #fff; }
.rt-chip.is-active span { background: rgba(255, 255, 255, .22); color: #fff; }

.rt-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.rt-section-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--rtb-ink); }
.rt-section-head__eyebrow { display: block; margin-bottom: 6px; font-family: "Yellowtail", cursive; font-size: 1.35rem; color: var(--rtb-red); }
.rt-section-head__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--rtb-red); text-decoration: none; }
.rt-section-head__link:hover { gap: 10px; color: var(--rtb-red-dark); }
.rt-section-head__link { transition: gap .2s, color .2s; }

/* ── Listing hero ─────────────────────────────────────────────────────────── */
.rt-blog-hero,
.rt-post-hero { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.rt-blog-hero__bg,
.rt-post-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.03); animation: rtb-zoom 14s ease-out forwards; }
@keyframes rtb-zoom { to { transform: scale(1); } }
.rt-blog-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15, 17, 20, .55) 0%, rgba(15, 17, 20, .35) 45%, rgba(15, 17, 20, .75) 100%); }
.rt-blog-hero__inner { padding: 170px 15px 90px; text-align: center; max-width: 860px; }
.rt-blog-hero .rt-crumbs { justify-content: center; }
.rt-blog-hero__eyebrow { display: block; font-family: "Yellowtail", cursive; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: #ffd9a8; margin-bottom: 4px; }
.rt-blog-hero__title { margin: 0 0 14px; color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; text-shadow: 0 4px 24px rgba(0, 0, 0, .25); }
.rt-blog-hero__sub { margin: 0 auto 30px; max-width: 640px; font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.6; color: rgba(255, 255, 255, .9); }

.rt-blog-search { position: relative; display: flex; align-items: center; max-width: 560px; margin: 0 auto; padding: 6px; border-radius: 999px; background: #fff; box-shadow: 0 16px 40px rgba(0, 0, 0, .25); }
.rt-blog-search i { position: absolute; left: 22px; font-size: 1.2rem; color: var(--rtb-muted); pointer-events: none; }
.rt-blog-search input { flex: 1; min-width: 0; height: 48px; padding: 0 12px 0 50px; border: 0; background: transparent; font-size: 1rem; color: var(--rtb-ink); outline: none; }
.rt-blog-search input::placeholder { color: var(--rtb-muted); }
.rt-blog-search button { height: 48px; padding: 0 26px; border: 0; border-radius: 999px; background: var(--rtb-red); color: #fff; font-weight: 600; cursor: pointer; transition: background .2s; }
.rt-blog-search button:hover { background: var(--rtb-red-dark); }
.rt-blog-search:focus-within { box-shadow: 0 0 0 4px rgba(255, 255, 255, .35), 0 16px 40px rgba(0, 0, 0, .25); }

/* ── Listing ──────────────────────────────────────────────────────────────── */
.rt-blog-list { padding: 56px 0 90px; background: #fff url("../images/backgrounds/bg-blog.jpg") center top / 100% auto repeat-y; }
.rt-blog-list__result { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 28px; padding: 14px 20px; border-radius: 12px; background: var(--rtb-cream); color: var(--rtb-text); }
.rt-blog-list__result strong { color: var(--rtb-ink); }
.rt-blog-list__result a { display: inline-flex; align-items: center; gap: 4px; color: var(--rtb-red); font-weight: 600; text-decoration: none; white-space: nowrap; }
.rt-blog-list__featured { margin-bottom: 40px; }

.rt-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
@media (max-width: 991.98px) { .rt-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
@media (max-width: 575.98px) { .rt-blog-grid { grid-template-columns: 1fr; } }

/* ── Card ─────────────────────────────────────────────────────────────────── */
.rt-bcard { position: relative; display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: var(--rtb-radius); overflow: hidden; box-shadow: var(--rtb-shadow); transition: transform .35s ease, box-shadow .35s ease; }
.rt-bcard:hover { transform: translateY(-6px); box-shadow: var(--rtb-shadow-hover); }
.rt-bcard__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #eee; }
.rt-bcard__media picture { display: contents; }
.rt-bcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .7, .2, 1); }
.rt-bcard:hover .rt-bcard__img { transform: scale(1.07); }
.rt-bcard__cat { position: absolute; left: 16px; top: 16px; padding: 6px 13px; border-radius: 999px; background: rgba(255, 255, 255, .95); color: var(--rtb-red); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 4px 12px rgba(0, 0, 0, .12); }
.rt-bcard__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.rt-bcard__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 10px; font-size: .8rem; color: var(--rtb-muted); }
.rt-bcard__meta span { display: inline-flex; align-items: center; gap: 5px; }
.rt-bcard__meta i { font-size: .95rem; color: var(--rtb-red); }
.rt-bcard__title { margin: 0 0 10px; font-size: 1.18rem; font-weight: 700; line-height: 1.38; }
.rt-bcard__title a { color: var(--rtb-ink); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1.5px no-repeat; transition: color .2s, background-size .4s; }
.rt-bcard__title a:hover { color: var(--rtb-red); }
.rt-bcard__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; } /* whole card clickable */
.rt-bcard__excerpt { margin: 0 0 18px; font-size: .92rem; line-height: 1.65; color: var(--rtb-text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.rt-bcard__more { position: relative; z-index: 2; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: .9rem; font-weight: 600; color: var(--rtb-red); text-decoration: none; transition: gap .2s; }
.rt-bcard:hover .rt-bcard__more { gap: 10px; }

/* Featured (horizontal) */
.rt-bcard--featured { flex-direction: row; min-height: 420px; }
.rt-bcard--featured .rt-bcard__media { flex: 0 0 58%; aspect-ratio: auto; }
.rt-bcard--featured .rt-bcard__body { justify-content: center; padding: 44px 48px; }
.rt-bcard--featured .rt-bcard__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.25; margin-bottom: 14px; }
.rt-bcard--featured .rt-bcard__title a { -webkit-line-clamp: 3; }
.rt-bcard--featured .rt-bcard__excerpt { font-size: 1rem; -webkit-line-clamp: 4; margin-bottom: 26px; }
.rt-bcard--featured .rt-bcard__more { padding: 12px 24px; border-radius: 999px; background: var(--rtb-red); color: #fff; margin-top: 0; }
.rt-bcard--featured .rt-bcard__cat { background: var(--rtb-red); color: #fff; }
.rt-bcard--featured .rt-bcard__media::after { content: "Featured story"; position: absolute; right: 16px; top: 16px; padding: 6px 12px; border-radius: 999px; background: rgba(15, 17, 20, .55); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(4px); }
@media (max-width: 991.98px) {
	.rt-bcard--featured { flex-direction: column; min-height: 0; }
	.rt-bcard--featured .rt-bcard__media { flex: none; aspect-ratio: 16 / 9; }
	.rt-bcard--featured .rt-bcard__body { padding: 26px 24px 28px; }
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.rt-pagination { margin-top: 56px; }
.rt-pagination ul.page-numbers { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; list-style: none; margin: 0; padding: 0; }
.rt-pagination ul.page-numbers li { display: flex; margin: 0; }
.rt-pagination a.page-numbers,
.rt-pagination span.page-numbers { display: flex; align-items: center; justify-content: center; gap: 6px; min-width: 46px; height: 46px; padding: 0 14px; border-radius: 999px; border: 1.5px solid #e2e8f0; background: #fff; color: var(--rtb-ink); font-weight: 600; text-decoration: none; line-height: 1; transition: all .18s; }
.rt-pagination a.page-numbers:hover { border-color: var(--rtb-red); color: var(--rtb-red); transform: translateY(-2px); }
.rt-pagination span.current { background: var(--rtb-red); border-color: var(--rtb-red); color: #fff; box-shadow: 0 6px 16px rgba(181, 35, 42, .3); }
.rt-pagination span.dots { min-width: 24px; padding: 0; border-color: transparent; background: transparent; color: var(--rtb-muted); }
@media (max-width: 575.98px) {
	.rt-pagination a.page-numbers, .rt-pagination span.page-numbers { min-width: 40px; height: 40px; padding: 0 10px; }
	.rt-pagination .prev span, .rt-pagination .next span { display: none; }
}

.rt-blog-empty { max-width: 520px; margin: 20px auto; padding: 56px 32px; text-align: center; background: #fff; border-radius: var(--rtb-radius); box-shadow: var(--rtb-shadow); }
.rt-blog-empty > i { font-size: 3.4rem; color: var(--rtb-red); }
.rt-blog-empty h2 { margin: 12px 0 8px; font-size: 1.5rem; color: var(--rtb-ink); }
.rt-blog-empty p { margin: 0 0 24px; color: var(--rtb-text); }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.rt-blog-cta { padding: 0 0 90px; }
.rt-post-related + .rt-blog-cta, .rt-post-tours + .rt-blog-cta { padding-top: 0; }
.rt-blog-cta__box {
	position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
	padding: 52px 56px; border-radius: 24px; color: #fff;
	background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .14), transparent 45%), linear-gradient(135deg, var(--rtb-red) 0%, var(--rtb-red-dark) 100%);
	box-shadow: 0 20px 50px rgba(181, 35, 42, .28);
}
.rt-blog-cta__copy { flex: 1 1 380px; }
.rt-blog-cta__copy h2 { margin: 0 0 10px; color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; }
.rt-blog-cta__copy p { margin: 0; max-width: 560px; color: rgba(255, 255, 255, .88); line-height: 1.6; }
.rt-blog-cta__actions { display: flex; align-items: center; gap: 12px 14px; flex-wrap: wrap; }
.rt-blog-cta__phone { display: inline-flex; align-items: center; gap: 6px; flex-basis: 100%; color: #fff; font-weight: 600; text-decoration: none; opacity: .92; }
.rt-blog-cta__phone:hover { color: #fff; opacity: 1; text-decoration: underline; }
@media (max-width: 575.98px) { .rt-blog-cta__box { padding: 36px 24px; } .rt-blog-cta__actions .rt-btn { flex: 1 1 auto; } }

/* ── Single: progress + hero ──────────────────────────────────────────────── */
.rt-read-progress { position: fixed; left: 0; top: 0; right: 0; height: 4px; z-index: 10000; pointer-events: none; }
.rt-read-progress span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, #f1913d, var(--rtb-red)); transform-origin: 0 50%; transform: scaleX(0); }
.admin-bar .rt-read-progress { top: 32px; }

.rt-post-hero { min-height: min(78vh, 680px); display: flex; align-items: flex-end; }
.rt-post-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15, 17, 20, .5) 0%, rgba(15, 17, 20, .15) 35%, rgba(15, 17, 20, .82) 100%); }
.rt-post-hero__inner { width: 100%; padding-top: 150px; padding-bottom: 56px; }
.rt-post-hero__title { max-width: 900px; }
.rt-post-hero__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.rt-post-hero__cats a { padding: 6px 14px; border-radius: 999px; background: var(--rtb-red); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; transition: background .2s; }
.rt-post-hero__cats a:hover { background: var(--rtb-red-dark); color: #fff; }
.rt-post-hero__title { margin: 0 0 24px; color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.015em; text-shadow: 0 4px 24px rgba(0, 0, 0, .3); }
.rt-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; font-size: .92rem; color: rgba(255, 255, 255, .9); }
.rt-post-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.rt-post-meta i { font-size: 1.05rem; color: #ffd9a8; }
.rt-post-meta__author { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 600; }
.rt-post-meta__author:hover { color: #fff; }
.rt-post-meta__author img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .85); object-fit: cover; }
.rt-post-meta__author span { display: flex; flex-direction: column; line-height: 1.25; }
.rt-post-meta__author small { font-weight: 400; font-size: .75rem; opacity: .8; }

/* ── Single: layout ───────────────────────────────────────────────────────── */
.rt-post { padding: 64px 0 80px; }
.rt-post__layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.rt-post__article { min-width: 0; max-width: 760px; }
.rt-post__sticky { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 1199.98px) { .rt-post__layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; } }
@media (max-width: 991.98px) {
	.rt-post__layout { grid-template-columns: 1fr; }
	.rt-post__article { max-width: none; }
	.rt-post__sticky { position: static; }
	.rt-toc--side { display: none; }
}
@media (min-width: 992px) { .rt-toc--inline { display: none; } }

.rt-post__lead { margin: 0 0 32px; padding-left: 22px; border-left: 4px solid var(--rtb-red); font-size: 1.22rem; line-height: 1.7; color: var(--rtb-ink); font-weight: 500; }

/* Article typography (on top of the shared .rt-rich-text) */
.rt-post__content { font-size: 1.075rem; line-height: 1.85; color: #3c3f44; }
.rt-post__content > * + * { margin-top: 1.25em; }
.rt-post__content p { margin: 0 0 1.25em; text-align: left; }
.rt-post__content h2 { margin: 2.2em 0 .7em; font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; line-height: 1.3; color: var(--rtb-ink); scroll-margin-top: 110px; }
.rt-post__content h3 { margin: 1.8em 0 .6em; font-size: clamp(1.25rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.35; color: var(--rtb-ink); scroll-margin-top: 110px; }
.rt-post__content h2::before { content: ""; display: block; width: 44px; height: 4px; margin-bottom: 14px; border-radius: 2px; background: var(--rtb-red); }
.rt-post__content a { color: var(--rtb-red); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.rt-post__content a:hover { color: var(--rtb-red-dark); text-decoration-thickness: 2px; }
.rt-post__content img { max-width: 100%; height: auto; border-radius: 14px; }
.rt-post__content figure { margin: 2em 0; }
.rt-post__content figure img { display: block; width: 100%; }
.rt-post__content figcaption,
.rt-post__content .wp-caption-text { margin-top: 10px; font-size: .85rem; color: var(--rtb-muted); text-align: center; font-style: italic; }
.rt-post__content .wp-caption { max-width: 100%; }
.rt-post__content .alignleft { float: left; margin: .4em 1.6em 1em 0; max-width: 50%; }
.rt-post__content .alignright { float: right; margin: .4em 0 1em 1.6em; max-width: 50%; }
.rt-post__content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.rt-post__content blockquote { position: relative; margin: 2em 0; padding: 28px 32px 28px 72px; border: 0; border-radius: 16px; background: var(--rtb-cream); font-size: 1.15rem; font-style: italic; color: var(--rtb-ink); }
.rt-post__content blockquote::before { content: "\fd77"; position: absolute; left: 22px; top: 22px; font-family: "Phosphor"; font-weight: normal; font-size: 2rem; line-height: 1; color: var(--rtb-red); transform: rotate(180deg); }
.rt-post__content blockquote p:last-child { margin-bottom: 0; }
.rt-post__content ul, .rt-post__content ol { padding-left: 1.5em !important; margin: 0 0 1.25em; }
.rt-post__content li { margin-bottom: .45em; }
.rt-post__content ul li::marker { color: var(--rtb-red); }
.rt-table-wrap { margin: 1.6em 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rt-post__content table { display: table; width: 100% !important; min-width: 100%; border-collapse: collapse; margin: 0; font-size: .95rem; }
.rt-post__content th, .rt-post__content td { padding: 12px 14px; border: 1px solid var(--rtb-line); text-align: left; }
.rt-post__content th { background: var(--rtb-cream); color: var(--rtb-ink); font-weight: 600; }
.rt-post__content iframe { max-width: 100%; border-radius: 14px; }
.rt-post__content .wp-block-embed__wrapper iframe,
.rt-post__content p > iframe[src*="youtube"] { width: 100%; height: auto; aspect-ratio: 16 / 9; }
.rt-post__content .gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rt-post__content .gallery .gallery-item { margin: 0; width: auto !important; }
.rt-post__content::after { content: ""; display: table; clear: both; }
.rt-post__pages { margin-top: 24px; font-weight: 600; }

/* Tags + share */
.rt-post__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 40px; }
.rt-post__tags > i { font-size: 1.2rem; color: var(--rtb-red); margin-right: 4px; }
.rt-post__tags a { padding: 6px 14px; border-radius: 999px; background: var(--rtb-cream); color: var(--rtb-text); font-size: .85rem; text-decoration: none; transition: background .2s, color .2s; }
.rt-post__tags a:hover { background: var(--rtb-red); color: #fff; }

.rt-share { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 32px; padding: 20px 0; border-top: 1px solid var(--rtb-line); border-bottom: 1px solid var(--rtb-line); }
.rt-share__label { font-weight: 700; color: var(--rtb-ink); }
.rt-share__list { display: flex; gap: 10px; }
.rt-share__btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border-radius: 50%; border: 1.5px solid var(--rtb-line); background: #fff; color: var(--rtb-ink); font-size: 1.15rem; text-decoration: none; cursor: pointer; transition: all .2s; }
.rt-share__btn:hover { color: #fff; transform: translateY(-2px); border-color: transparent; }
.rt-share__btn--facebook:hover { background: #1877f2; }
.rt-share__btn--x:hover { background: #111; }
.rt-share__btn--pinterest:hover { background: #e60023; }
.rt-share__btn--whatsapp:hover { background: #25d366; }
.rt-share__btn--linkedin:hover { background: #0a66c2; }
.rt-share__btn--copy:hover { background: var(--rtb-red); }
.rt-share__copied { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translate(-50%, 4px); padding: 4px 10px; border-radius: 6px; background: var(--rtb-ink); color: #fff; font-size: .75rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.rt-share__btn--copy.is-copied .rt-share__copied { opacity: 1; transform: translate(-50%, 0); }

/* Author box */
.rt-author-box { display: flex; gap: 22px; align-items: flex-start; margin-top: 36px; padding: 28px; border-radius: var(--rtb-radius); background: var(--rtb-cream); }
.rt-author-box img { flex-shrink: 0; width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 6px 16px rgba(0, 0, 0, .1); }
.rt-author-box small { color: var(--rtb-red); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; }
.rt-author-box h2 { margin: 2px 0 8px; font-size: 1.25rem; color: var(--rtb-ink); }
.rt-author-box p { margin: 0 0 10px; color: var(--rtb-text); line-height: 1.65; }
.rt-author-box a { display: inline-flex; align-items: center; gap: 6px; color: var(--rtb-red); font-weight: 600; text-decoration: none; }
@media (max-width: 575.98px) { .rt-author-box { flex-direction: column; } }

/* Prev / next */
.rt-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.rt-post-nav__item { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 14px; border: 1.5px solid var(--rtb-line); text-decoration: none; color: var(--rtb-ink); font-weight: 600; line-height: 1.35; transition: border-color .2s, box-shadow .2s; }
.rt-post-nav__item:hover { border-color: var(--rtb-red); box-shadow: var(--rtb-shadow); color: var(--rtb-ink); }
.rt-post-nav__item img { flex-shrink: 0; width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.rt-post-nav__item span { display: flex; flex-direction: column; gap: 4px; min-width: 0; font-size: .92rem; }
.rt-post-nav__item small { display: inline-flex; align-items: center; gap: 4px; color: var(--rtb-red); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.rt-post-nav__item--next { flex-direction: row-reverse; text-align: right; }
.rt-post-nav__item--next small { justify-content: flex-end; }
@media (max-width: 575.98px) { .rt-post-nav { grid-template-columns: 1fr; } .rt-post-nav > span:empty { display: none; } }

/* ── Single: sidebar ──────────────────────────────────────────────────────── */
.rt-side-card { padding: 24px; border-radius: var(--rtb-radius); background: #fff; border: 1px solid var(--rtb-line); box-shadow: 0 4px 18px rgba(36, 39, 44, .05); }
.rt-side-card__title { display: flex; align-items: center; gap: 8px; margin: 0 0 16px; font-size: 1.05rem; font-weight: 700; color: var(--rtb-ink); }
.rt-side-card__title i { color: var(--rtb-red); }

.rt-toc__list, .rt-toc__list ol { list-style: none; margin: 0; padding: 0; }
.rt-toc__list { counter-reset: toc; }
.rt-toc__list > li { counter-increment: toc; }
.rt-toc__list a { position: relative; display: block; padding: 7px 0 7px 32px; color: var(--rtb-text); font-size: .9rem; line-height: 1.45; text-decoration: none; border-radius: 8px; transition: color .2s; }
.rt-toc__list > li > a::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 7px; font-size: .78rem; font-weight: 700; color: var(--rtb-muted); }
.rt-toc__list ol a { padding-left: 46px; font-size: .85rem; }
.rt-toc__list ol a::before { content: ""; position: absolute; left: 34px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--rtb-muted); }
.rt-toc__list a:hover { color: var(--rtb-red); }
.rt-toc__list a.is-active { color: var(--rtb-red); font-weight: 600; }
.rt-toc__list a.is-active::before { color: var(--rtb-red); background-color: currentColor; }
.rt-toc__list > li > a.is-active::before { background: none; }
.rt-toc--side .rt-toc__list { max-height: 46vh; overflow-y: auto; scrollbar-width: thin; }

.rt-toc--inline { margin: 0 0 32px; border-radius: 14px; background: var(--rtb-cream); }
.rt-toc--inline summary { display: flex; align-items: center; gap: 8px; padding: 16px 20px; font-weight: 700; color: var(--rtb-ink); cursor: pointer; list-style: none; }
.rt-toc--inline summary::-webkit-details-marker { display: none; }
.rt-toc--inline summary::after { content: "+"; margin-left: auto; font-size: 1.4rem; line-height: 1; color: var(--rtb-red); }
.rt-toc--inline[open] summary::after { content: "−"; }
.rt-toc--inline summary i { color: var(--rtb-red); }
.rt-toc--inline .rt-toc__list { padding: 0 20px 16px; }

.rt-plan-card { position: relative; overflow: hidden; border: 0; color: #fff; background: radial-gradient(circle at 100% 0, rgba(255, 255, 255, .16), transparent 50%), linear-gradient(150deg, var(--rtb-red), var(--rtb-red-dark)); box-shadow: 0 16px 36px rgba(181, 35, 42, .28); }
.rt-plan-card__eyebrow { display: block; font-family: "Yellowtail", cursive; font-size: 1.25rem; color: #ffd9a8; }
.rt-plan-card h2 { margin: 4px 0 10px; color: #fff; font-size: 1.35rem; font-weight: 700; line-height: 1.3; }
.rt-plan-card p { margin: 0 0 18px; color: rgba(255, 255, 255, .88); font-size: .92rem; line-height: 1.6; }
.rt-plan-card .rt-btn { width: 100%; }
.rt-plan-card__contact { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .2); }
.rt-plan-card__contact a { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: .88rem; font-weight: 600; text-decoration: none; }
.rt-plan-card__contact a:hover { color: #ffd9a8; }

.rt-mini-posts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.rt-mini-posts a { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.rt-mini-posts img { flex-shrink: 0; width: 72px; height: 72px; border-radius: 12px; object-fit: cover; transition: transform .3s; }
.rt-mini-posts a:hover img { transform: scale(1.05); }
.rt-mini-posts span { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.rt-mini-posts strong { color: var(--rtb-ink); font-size: .9rem; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.rt-mini-posts a:hover strong { color: var(--rtb-red); }
.rt-mini-posts small { color: var(--rtb-muted); font-size: .78rem; }
.rt-side-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.rt-side-cats .rt-chip { padding: 7px 14px; font-size: .85rem; }

/* ── Single: related tours + stories ──────────────────────────────────────── */
.rt-post-tours { overflow-x: clip; padding: 80px 0; background: var(--rtb-cream) url("../images/backgrounds/bg-blog.jpg") center / cover; }
.rt-post-related { padding: 80px 0 90px; }

@media (max-width: 767.98px) {
	.rt-blog-hero__inner { padding: 130px 15px 70px; }
	.rt-blog-search button { padding: 0 18px; }
	.rt-post-hero { min-height: 520px; }
	.rt-post-hero__inner { padding-top: 120px; padding-bottom: 36px; }
	.rt-post-meta { gap: 10px 16px; font-size: .85rem; }
	.rt-post { padding: 40px 0 56px; }
	.rt-post__content { font-size: 1.02rem; }
	.rt-post__content blockquote { padding: 22px 20px 22px 56px; }
	.rt-post__content blockquote::before { left: 16px; top: 22px; font-size: 1.6rem; }
	.rt-post__content .alignleft, .rt-post__content .alignright { float: none; margin: 1em 0; max-width: 100%; }
	.rt-post-tours, .rt-post-related { padding: 56px 0; }
	.rt-blog-list { padding: 44px 0 64px; }
	.rt-blog-cta { padding-bottom: 64px; }
}

@media (prefers-reduced-motion: reduce) {
	.rt-blog-hero__bg, .rt-post-hero__bg { animation: none; transform: none; }
	.rt-bcard, .rt-bcard__img { transition: none; }
}

/* Decorative Phosphor glyphs */
.rt-blog-cta__deco { position: absolute; right: 4%; bottom: -10px; font-size: 150px; color: rgba(255, 255, 255, .09); pointer-events: none; }
.rt-blog-cta__copy, .rt-blog-cta__actions { position: relative; }
.rt-plan-card__deco { position: absolute; right: -8px; top: -4px; font-size: 96px; color: rgba(255, 255, 255, .1); pointer-events: none; }
.rt-plan-card > *:not(.rt-plan-card__deco) { position: relative; }
@media (max-width: 575.98px) { .rt-blog-cta__deco { font-size: 120px; } }
