@import url("https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
    --bg: #f6f8fc;
    --paper: #ffffff;
    --ink: #0b2d5c;
    --muted: #4b6487;
    --accent: #f4821f;
    --accent-dark: #0d3568;
    --line: #d8e2ef;
    --soft: #edf3fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 5% 0%, #e8eef9 0%, var(--bg) 42%), var(--bg);
    line-height: 1.62;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1440px, 92%);
    margin: 0 auto;
}

.narrow {
    width: min(720px, 92%);
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 12px rgba(13, 53, 104, 0.08);
}

.admin-header {
    background: #0b2d5c;
    border-bottom: 1px solid #174074;
}

.admin-header .brand,
.admin-header .site-nav a {
    color: #eaf3e8;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
}

.brand-logo {
    width: 236px;
    height: 75px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.site-nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--accent-dark);
    display: block;
}

.site-nav a {
    padding: 8px 11px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.94rem;
    color: #0d3568;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: var(--soft);
}

.hero,
.page-hero {
    padding: 64px 0 40px;
}

.hero-search {
    padding-top: 34px;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px;
    background: #edf3fb;
    border: 1px solid #d8e2ef;
    border-radius: 20px;
    padding: 26px;
}

.hero-panel-main h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 10px;
}

.hero-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.hero-pill {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #cad9eb;
    border-radius: 999px;
    background: #f4f7fc;
    color: #0d3568;
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-searchbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    background: #f7f9fd;
    border: 1px solid #d4deed;
    border-radius: 12px;
    padding: 8px;
    margin: 0 0 14px;
}

.hero-searchbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e2ef;
    background: #fff;
    border-radius: 10px;
    padding: 9px 10px;
    color: #0d3568;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
}

.hero-searchbar-btn {
    background: var(--accent);
    color: #fff !important;
    border-color: var(--accent) !important;
}

.hero-panel-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
    gap: 10px;
}

.hero-media-main {
    grid-row: 1 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #d8e2ef;
    background: #f1f5fc;
}

.hero-media-side {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #d8e2ef;
    background: #f1f5fc;
}

.hero-media-side-a {
    grid-column: 2;
    grid-row: 1;
}

.hero-media-side-b {
    grid-column: 2;
    grid-row: 2;
}

.hero-media-side-c {
    grid-column: 2;
    grid-row: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.hero-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(13, 53, 104, 0.09);
}

.hero-single {
    padding: 0 0 14px;
}

.section-seo-intro {
    padding: 22px 0 14px;
}

.seo-intro-article {
    background: linear-gradient(160deg, #ffffff 0%, #f2f7ff 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 10px 24px rgba(13, 53, 104, 0.09);
}

.seo-intro-head {
    max-width: 900px;
    margin-bottom: 14px;
}

.seo-intro-article h2 {
    font-size: clamp(1.28rem, 2.2vw, 1.72rem);
    margin-bottom: 8px;
}

.seo-intro-article p {
    margin: 0;
    color: var(--muted);
}

.seo-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
}

.seo-intro-block {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
}

.seo-intro-block h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.seo-intro-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.seo-intro-list li {
    margin-bottom: 6px;
}

.seo-intro-list li:last-child {
    margin-bottom: 0;
}

.seo-intro-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-single-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: #0b2d5c;
    height: min(36vh, 340px);
    min-height: 558px;
    box-shadow: none;
}

.hero-single-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-single-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.52) 100%);
}

.hero-apollo-content {
    position: absolute;
    left: min(4vw, 48px);
    bottom: 56px;
    transform: none;
    width: min(680px, 90%);
    color: #fff;
}

.hero-kicker {
    display: none;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: #f9fbf8;
    font-size: 0.78rem;
    border-left: 32px solid #f4821f;
    padding-left: 12px;
}

.hero-title {
    margin: 0;
    text-transform: none;
    line-height: 1.08;
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-copy {
    display: none;
    margin: 0 0 18px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 640px;
    color: rgba(255, 255, 255, 0.96);
}

.hero-cta-main {
    background: #f4821f;
    color: #fff;
    border-color: #f4821f;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 12px 28px;
    border-radius: 12px;
}

.hero-cta-main:hover {
    background: #e26f11;
    border-color: #e26f11;
}

.hero-cta-alt {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 12px 22px;
    border-radius: 12px;
}

.hero-actions {
    display: none;
}

.hero-bookbar {
    position: relative;
    width: min(1110px, calc(100% - 10px));
    margin: -20px auto 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #d8e2ef;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(13, 53, 104, 0.16);
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    gap: 2px;
}

.hero-bookbar-mobile-trigger {
    display: none;
}

.hero-bookbar-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 62px;
    padding: 8px 12px;
    border-right: 1px solid #e5edf7;
}

.hero-bookbar-field span {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0d3568;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.hero-bookbar-field input,
.hero-bookbar-field select {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2f4f76;
    font-size: 0.92rem;
    outline: none;
    font: inherit;
    padding: 0;
    line-height: 1.25;
    transition: color 0.18s ease;
}

.hero-bookbar-field input::placeholder {
    color: #8da2be;
}

.hero-bookbar-field:focus-within {
    background: #f5f9ff;
    border-radius: 10px;
}

.hero-bookbar-field:focus-within span {
    color: var(--accent-dark);
}

.hero-bookbar-field input:focus,
.hero-bookbar-field select:focus {
    color: #0b2d5c;
}

.hero-bookbar-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #f4821f;
    color: #fff;
    font-weight: 700;
    font-family: "Sora", "Segoe UI", sans-serif;
    min-width: 132px;
    min-height: 50px;
    padding: 0 22px;
    cursor: pointer;
    align-self: center;
}

.hero-bookbar-submit:hover {
    background: #e26f11;
}

.hero-single-controls {
    position: absolute;
    right: 16px;
    top: 16px;
    display: inline-flex;
    gap: 8px;
}

.hero-single-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(24, 31, 25, 0.56);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.hero-single-dots {
    position: absolute;
    right: 16px;
    bottom: 80px;
    display: inline-flex;
    gap: 8px;
}

.hero-single-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(244, 130, 31, 0.58);
    cursor: pointer;
    padding: 0;
    opacity: 1;
}

.hero-single-dot.is-active {
    width: 30px;
    background: #ffffff;
    border-color: #ffffff;
}

.hero-banner {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    margin-bottom: 26px;
    background: #eef3fb;
}

.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin: 0 0 12px;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.lead {
    font-size: 1.08rem;
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.78rem;
}

.section {
    padding: 52px 0;
}

.section-soft {
    background: var(--soft);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-head h2 {
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.section-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-about {
    background: linear-gradient(135deg, var(--soft) 0%, rgba(237, 243, 251, 0.5) 100%);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-header .lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values h3 {
    font-size: 1.2rem;
    margin: 0 0 16px;
    color: var(--ink);
}

.values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.values-list li {
    padding-left: 24px;
    position: relative;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.values-list strong {
    color: var(--ink);
}

.section-media-logos {
    padding: 40px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.media-logos-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.media-logos-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
}

.media-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    width: 100%;
    align-items: center;
    justify-items: center;
    max-width: 900px;
}

.media-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px;
    transition: all 0.2s ease;
}

.media-logo:hover {
    background: var(--paper);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(13, 53, 104, 0.1);
}

.media-logo img {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.slider-controls {
    display: inline-flex;
    gap: 6px;
}

.slider-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #d0dced;
    border-radius: 8px;
    background: #fff;
    color: #0d3568;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.slider-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card,
.article-item,
.side-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(13, 53, 104, 0.06);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.card:hover,
.article-item:hover,
.side-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 53, 104, 0.14);
    border-color: var(--accent);
}

.card-media {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 12px;
    background: #f0f4ee;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover .card-media {
    transform: scale(1.03);
}

.detail-media {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    margin-bottom: 14px;
    background: #f0f4ee;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(244, 130, 31, 0.08) 0%, rgba(244, 130, 31, 0.04) 100%);
    border: 1.5px solid var(--accent);
    border-radius: 24px;
    padding: 6px 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.article-list {
    display: grid;
    gap: 14px;
}

.article-list-related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-list-related .article-item {
    height: 100%;
}

.article-list-related .card-media {
    height: 170px;
}

.article-collection {
    display: grid;
    gap: 20px;
}

.article-meta-line {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.article-meta-line span {
    padding: 0 5px;
}

.article-meta-line-light {
    color: #dbe8df;
}

.article-hub {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.article-hero-card {
    position: relative;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #174074;
    background: #0d3568;
    box-shadow: 0 16px 34px rgba(9, 33, 66, 0.3);
}

.article-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 14, 0.12) 0%, rgba(10, 24, 14, 0.82) 76%);
}

.article-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: #f1f6f0;
}

.article-hero-content h2 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.article-hero-content h2 a,
.article-hero-content p {
    color: inherit;
}

.article-quick-stack {
    display: grid;
    gap: 12px;
}

.article-quick-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #ffffff 0%, #f3f7fd 100%);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(13, 53, 104, 0.09);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.article-quick-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(13, 53, 104, 0.13);
}

.article-quick-media {
    width: 100%;
    height: 100%;
    min-height: 125px;
    object-fit: cover;
    background: #f0f4ee;
}

.article-quick-body {
    padding: 12px 12px 12px 0;
}

.article-quick-body h3 {
    margin-bottom: 8px;
    font-size: 1.03rem;
}

.article-grid-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.article-tile {
    display: grid;
    grid-template-rows: 190px 1fr;
    border-radius: 14px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 10px 22px rgba(13, 53, 104, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(13, 53, 104, 0.13);
}

.article-tile-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f0f4ee;
}

.article-tile-body {
    padding: 14px;
}

.article-tile-body h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
}

.article-list-modern {
    display: grid;
    gap: 14px;
}

.article-teaser {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 53, 104, 0.08);
}

.article-teaser-media {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    background: #f0f4ee;
}

.article-teaser-body {
    padding: 16px 16px 16px 2px;
}

.article-teaser-body h3 {
    margin-bottom: 10px;
    font-size: 1.46rem;
}

.article-teaser-body p {
    margin-top: 0;
}

.article-read-link {
    font-weight: 700;
    color: var(--accent-dark);
}

.article-list-compact {
    gap: 12px;
}

.article-item-compact {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
}

.article-thumb {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #f0f4ee;
}

.article-item-compact-body h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.article-item-compact-body p {
    margin-top: 0;
    margin-bottom: 10px;
}

.article-showcase-grid {
    display: flex;
    gap: 0;
}

.article-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 4px;
}

.article-showcase-card {
    background: #f5f8fd;
    border: 1px solid #d8e2ef;
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 8px 18px rgba(13, 53, 104, 0.09);
    height: auto;
}

.article-showcase-media-wrap {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.article-showcase-media {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    background: #edf2ea;
}

.article-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 9, 8, 0.05) 40%, rgba(5, 9, 8, 0.74) 100%);
}

.article-showcase-media-wrap h3 {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.28;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.article-showcase-body {
    padding: 12px 6px 6px;
}

.article-showcase-excerpt {
    margin-top: 0;
    margin-bottom: 10px;
    color: #4b6487;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-showcase-btn {
    width: 100%;
    text-align: center;
    margin-top: 6px;
    margin-right: 0;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-top: 6px;
    border: 1px solid transparent;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(244, 130, 31, 0.3);
    transform: translateY(-1px);
}

.btn-light {
    background: #fff;
    border-color: var(--line);
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(244, 130, 31, 0.25);
}

.card h2,
.card h3 {
    margin: 10px 0 8px;
    font-size: 1.15rem;
    color: var(--ink);
}

.card h2 a {
    color: inherit;
    transition: color 0.2s ease;
}

.card:hover h2 a {
    color: var(--accent);
}

.card p {
    margin: 6px 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.content-main {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
}

.content-main ul,
.content-main ol {
    padding-left: 20px;
}

.location-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 18px;
    align-items: start;
}

.location-card,
.location-map-card,
.review-card,
.review-summary {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(13, 53, 104, 0.08);
}

.location-address {
    margin: 0 0 12px;
    color: var(--ink);
}

.location-hero-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 14px;
    display: block;
    background: #edf3fb;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.location-note {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--muted);
}

.location-map-link {
    font-weight: 700;
}

.location-map-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 10px;
    display: block;
    background: #edf3fb;
}

.location-map-embed {
    width: 100%;
    height: 260px;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
    background: #edf3fb;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-card-media {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
    margin-bottom: 10px;
    display: block;
    background: #edf3fb;
}

.review-card h3,
.review-summary h3 {
    margin-bottom: 10px;
}

.review-summary {
    margin-top: 14px;
}

.mini-list {
    margin: 10px 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.85rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-list li {
    position: relative;
    padding-left: 18px;
}

.mini-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #7ea2cf;
    box-shadow: 0 0 0 3px rgba(13, 53, 104, 0.12);
}

.alert-success,
.alert-error {
    border-radius: 8px;
    padding: 10px;
}

.alert-success {
    background: #edf3fb;
    border: 1px solid #b9cde7;
    color: #0d3568;
}

.alert-error {
    background: #fae2e2;
    border: 1px solid #d5a2a2;
}

.site-footer {
    background: #0b2d5c;
    color: #e7eef9;
    margin-top: 40px;
    padding: 48px 0 0;
}

.footer-content {
    padding: 32px 0;
    border-bottom: 1px solid #174074;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.footer-section h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.footer-section p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c4d6ee;
}

.footer-about {
    grid-column: 1;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ffd3ad;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffd3ad;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #f4821f;
    color: #0b2d5c;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: 1px solid #174074;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.newsletter-form input::placeholder {
    color: #8b9cb3;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #f4821f;
}

.newsletter-form .btn {
    margin: 0;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #c4d6ee;
}

.footer-bottom p {
    margin: 0;
}

@media (min-width: 1380px) {
    .article-list-related {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: #ffd3ad;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 900px) {
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .card-media {
        height: 160px;
    }

    .location-layout,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .article-list-related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-single-wrap,
    .hero-single-image {
        height: 42vh;
        min-height: 300px;
    }

    .hero-single-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.66) 100%);
    }

    .hero-apollo-content {
        width: min(620px, 92%);
        left: 18px;
        right: 18px;
        bottom: 48px;
        top: auto;
        transform: none;
    }

    .hero-title {
        font-size: clamp(1.4rem, 6vw, 2.1rem);
    }

    .hero-single-controls {
        top: auto;
        right: 12px;
        bottom: 12px;
    }

    .hero-single-dots {
        right: 12px;
        bottom: 72px;
        left: auto;
        transform: none;
    }

    .hero-bookbar {
        grid-template-columns: 1fr 1fr;
        border-radius: 14px;
        padding: 10px;
        margin-top: -18px;
    }

    .hero-bookbar-field {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        min-height: 60px;
        padding: 8px 10px;
    }

    .hero-bookbar-submit {
        grid-column: 1 / -1;
        min-height: 42px;
    }

    .article-hub,
    .article-grid-tiles,
    .article-teaser {
        grid-template-columns: 1fr;
    }

    .article-hero-card {
        min-height: 340px;
    }

    .article-teaser-media,
    .article-featured-media,
    .article-tile {
        height: auto;
    }

    .article-tile {
        grid-template-rows: 220px 1fr;
    }

    .article-quick-card {
        grid-template-columns: 1fr;
    }

    .article-quick-media,
    .article-featured-media,
    .article-hero-media {
        height: 220px;
    }

    .article-quick-body {
        padding: 12px;
    }

    .article-teaser-body {
        padding: 14px;
    }

    .article-item-compact {
        grid-template-columns: 1fr;
    }

    .article-thumb {
        height: 180px;
    }

    .article-showcase-card {
        min-width: 0;
    }

    .article-showcase-media {
        height: 190px;
    }

    .section-head-actions {
        width: 100%;
        justify-content: space-between;
    }

    .nav-wrap {
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 10px;
    }

    .site-nav.site-nav--open {
        display: flex;
    }

    .brand {
        font-size: 1rem;
    }

    .brand-logo {
        width: 180px;
        height: 40px;
    }

    .hero-banner {
        height: 230px;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 42px 0;
    }

    .section-seo-intro {
        padding: 14px 0 8px;
    }

    .seo-intro-article {
        padding: 14px;
        border-radius: 12px;
    }

    .seo-intro-head {
        margin-bottom: 10px;
    }

    .seo-intro-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .seo-intro-actions .btn {
        width: 100%;
        text-align: center;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        padding: 14px;
    }

    .card-media {
        height: 190px;
    }

    .hero-single {
        padding-top: 10px;
    }

    .hero-single-wrap,
    .hero-single-image {
        height: 34vh;
        min-height: 220px;
        border-radius: 0;
    }

    .hero-single-overlay {
        background: linear-gradient(180deg, rgba(4, 16, 34, 0.2) 12%, rgba(4, 16, 34, 0.7) 100%);
    }

    .hero-apollo-content {
        width: 92%;
        left: 14px;
        right: 14px;
        bottom: 34px;
        top: auto;
    }

    .hero-title {
        font-size: clamp(1.15rem, 6.8vw, 1.5rem);
        line-height: 1.08;
        margin-bottom: 0;
    }

    .hero-copy {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .hero-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .hero-bookbar {
        width: calc(100% - 16px);
        margin-top: 8px;
        grid-template-columns: 1fr;
        gap: 2px;
        border-radius: 16px;
        padding: 8px;
        transition: max-height 0.24s ease, padding 0.24s ease, margin 0.24s ease;
    }

    .hero-bookbar-mobile-trigger {
        width: calc(100% - 16px);
        margin: 8px auto 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #cddaea;
        border-radius: 999px;
        background: #ffffff;
        min-height: 56px;
        padding: 0 8px 0 18px;
        color: #5f6f84;
        font-size: 0.95rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(13, 53, 104, 0.12);
        cursor: pointer;
    }

    .hero-bookbar-mobile-icon {
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: #f4821f;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
    }

    .hero-bookbar.is-collapsed {
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
        margin-top: 4px;
        box-shadow: none;
    }

    .hero-bookbar-field {
        border-bottom: 1px solid var(--line);
        min-height: 56px;
        padding: 8px 8px;
    }

    .hero-bookbar-field:last-of-type {
        border-bottom: 0;
    }

    .hero-bookbar-submit {
        width: 100%;
        min-height: 44px;
    }

    .hero-single-btn {
        width: 34px;
        height: 34px;
    }

    .hero-single-dots {
        bottom: 60px;
    }

    .article-showcase-card {
        min-width: 0;
    }

    .article-list-related {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        display: none;
    }

    .section-media-logos {
        padding: 28px 0;
    }

    .media-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .media-logo {
        height: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .footer-credits {
        flex-direction: column;
        width: 100%;
    }

    .footer-legal {
        width: 100%;
        justify-content: flex-start;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .about-header .lead {
        font-size: 1rem;
    }
}

.table-wrap {
    overflow-x: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.admin-table th {
    background: #edf3fb;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.inline-form {
    display: inline;
    margin: 0;
}

.link-btn {
    background: none;
    border: none;
    color: var(--accent-dark);
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}
