:root {
    --primary-background: #F8FAFC;
    --surface-background: #FFFFFF;
    --accent-color: #0077B6;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --border-color: #E2E8F0;
    --muted-background: #F1F5F9;
}

body {
    font-family: 'Source Serif 4', serif;
    color: var(--text-primary);
    background-color: var(--primary-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.text-muted {
    color: #555555 !important;
}

* {
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* ===== header ===== */
.site-header {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.site-header .js-dropdown-content {
    min-width: 200px;
    transform-origin: top;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header #js-mobile-menu {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.site-header .mobile-dropdown .js-dropdown-content {
    animation: none;
}

.site-header button:focus {
    outline: none;
}

.site-header #js-mobile-toggle[aria-expanded="true"] .js-menu-icon::before {
    content: "\f659";
}

@media (max-width: 767px) {

    .site-header .nav-link,
    .site-header .js-dropdown-btn {
        font-size: 0.8rem;
    }
}

/* ===== hero ===== */
.hero-section-block {
    position: relative;
}

.hero-section-block .hero-bg-image {
    background-image: url('../frontend/static/graphics/australian-sports-bar-interior.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section-block .hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section-block .hero-description {
    font-family: 'Source Serif 4', serif;
}

.hero-section-block .hero-btn-primary,
.hero-section-block .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

@media (max-width: 767px) {
    .hero-section-block .hero-title {
        hyphens: auto;
    }
}

/* ===== sydney-venues ===== */
.sydney-venues-block .js-venue-card.hidden {
    display: none;
}

.sydney-venues-block .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sydney-venues-block .js-filter-btn.active {
    background-color: #0077B6 !important;
    color: #FFFFFF !important;
    border-color: #0077B6 !important;
}

/* ===== melbourne-venues ===== */
.melbourne-venues-section .venue-card {
    border-bottom: 4px solid transparent;
}

.melbourne-venues-section .venue-card:hover {
    border-bottom-color: #0077B6;
}

.melbourne-venues-section .venue-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.melbourne-venues-section .venue-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0077B6;
    transition: left 0.3s ease-in-out;
    z-index: -1;
}

.melbourne-venues-section .venue-btn:hover::before {
    left: 0;
}

.melbourne-venues-section .venue-title-link {
    text-decoration: none;
}

@media (max-width: 767px) {
    .melbourne-venues-section .venue-card {
        margin-bottom: 20px;
    }
}

/* ===== sports-bars ===== */
.top-sports-bars-section .active-filter {
    background-color: #0077B6;
    color: #FFFFFF;
    border-color: #0077B6;
}

.top-sports-bars-section .js-venue-card {
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-sports-bars-section .js-venue-card.hidden {
    display: none;
    opacity: 0;
}

.top-sports-bars-section .container {
    max-width: 1280px;
}

.top-sports-bars-section h2,
.top-sports-bars-section h3 {
    font-family: 'Inter', sans-serif;
}

.top-sports-bars-section p,
.top-sports-bars-section span {
    font-family: 'Source Serif 4', serif;
}

/* ===== craft-breweries ===== */
.craft-breweries-block {
    font-family: 'Inter', sans-serif;
}

.craft-breweries-block h2,
.craft-breweries-block h3 {
    color: #1A1A1A;
}

.craft-breweries-block .craft-breweries-block__card {
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease-in-out;
}

.craft-breweries-block .craft-breweries-block__card:hover {
    transform: translateY(-4px);
    border-color: #0077B6;
}

.craft-breweries-block .craft-breweries-block__card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.craft-breweries-block .craft-breweries-block__card:hover img {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .craft-breweries-block h2 {
        text-align: left;
    }

    .craft-breweries-block .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== blog-preview ===== */
.blog-preview-section {
    overflow: hidden;
}

.blog-preview-section .blog-card {
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
}

.blog-preview-section .blog-card:hover {
    transform: translateY(-8px);
    border-color: #0077B6;
}

.blog-preview-section .blog-excerpt {
    line-height: 1.6;
}

.blog-preview-section .blog-link:hover {
    opacity: 0.8;
}

/* ===== trust-elements ===== */
.trust-elements-block .gallery-item img {
    transition: transform 0.5s ease;
}

.trust-elements-block .gallery-item:hover img {
    transform: scale(1.1);
}

.trust-elements-block .faq-item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.trust-elements-block .faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.trust-elements-block .js-faq-toggle i {
    transition: transform 0.3s ease;
}

.trust-elements-block .js-faq-content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== footer ===== */
.footer-block {
    font-family: 'Source Serif 4', serif;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.footer-block a {
    transition: all 0.3s ease;
}

.footer-block iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
}

.footer-block iframe:hover {
    filter: grayscale(0) contrast(1);
}

.footer-block img {
    max-height: 80px;
}

.site-header {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.site-header .js-dropdown-content {
    min-width: 200px;
    transform-origin: top;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header #js-mobile-menu {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.site-header .mobile-dropdown .js-dropdown-content {
    animation: none;
}

.site-header button:focus {
    outline: none;
}

.site-header #js-mobile-toggle[aria-expanded="true"] .js-menu-icon::before {
    content: "\f659";
}

@media (max-width: 767px) {

    .site-header .nav-link,
    .site-header .js-dropdown-btn {
        font-size: 0.8rem;
    }
}

.footer-block {
    font-family: 'Source Serif 4', serif;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.footer-block a {
    transition: all 0.3s ease;
}

.footer-block iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
}

.footer-block iframe:hover {
    filter: grayscale(0) contrast(1);
}

.footer-block img {
    max-height: 80px;
}

.repeat-theme-hero h1 {
    font-family: 'Inter', sans-serif;
}

.repeat-theme-content {
    font-family: 'Source Serif 4', serif;
}

.repeat-theme-content h2 {
    font-family: 'Inter', sans-serif;
}

.repeat-theme-content input,
.repeat-theme-content select {
    font-family: 'Inter', sans-serif;
}

.repeat-theme-content .js-list-item {
    transition: all 0.3s ease;
}

.repeat-theme-content .js-list-item:hover {
    border-color: #0077B6;
    box-shadow: 0 10px 30px -10px rgba(0, 119, 182, 0.15);
}


/* ===== PAGE: privacy ===== */
.policy-article { color: #1A1A1A; font-family: 'Source Serif 4', serif; line-height: 1.8; background-color: #FFFFFF; padding: 20px 0; }.policy-inner-wrapper { max-width: 800px; margin: 0 auto; padding: 0 20px; }.policy-header { margin-bottom: 40px; border-bottom: 1px solid #E2E8F0; padding-bottom: 20px; }.policy-article h2 { font-family: 'Inter', sans-serif; color: #0077B6; font-weight: 800; margin-top: 40px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: -0.02em; font-size: 16px; }@media (min-width: 768px) { .policy-article h2 { font-size: 32px; } }.last-updated { font-family: 'Inter', sans-serif; font-size: 14px; color: #555555; font-weight: 700; }.policy-section { margin-bottom: 30px; }.policy-section p { margin-bottom: 20px; font-size: 18px; }@media (max-width: 767px) { .policy-section p { font-size: 16px; } }.policy-list { margin-bottom: 20px; padding-left: 20px; list-style-type: none; }.policy-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 18px; }@media (max-width: 767px) { .policy-list li { font-size: 16px; } }.policy-list li::before { content: '\F26E'; font-family: 'bootstrap-icons'; position: absolute; left: 0; color: #0077B6; font-size: 14px; top: 4px; }.contact-details-block { background-color: #F8FAFC; padding: 24px; border-radius: 8px; border-left: 4px solid #0077B6; margin-top: 20px; }.contact-details-block p { margin-bottom: 10px; font-weight: 600; font-family: 'Inter', sans-serif; font-size: 16px; }.contact-link { color: #0077B6; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }.contact-link:hover { border-bottom-color: #0077B6; }

/* ===== PAGE: terms ===== */
.policy-content-area {
  font-family: 'Source Serif 4', serif;
  line-height: 1.8;
  color: #1A1A1A;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-content-area h1,
.policy-content-area h2,
.policy-content-area h3 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

.policy-content-area p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.policy-content-area .terms-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.policy-content-area .contact-box strong {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
}

.policy-content-area .terms-header {
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .policy-content-area p {
    font-size: 1rem;
  }
  .policy-content-area .terms-section {
    margin-bottom: 2rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-content-area {
  background-color: #F8FAFC;
  font-family: 'Source Serif 4', serif;
  color: #1A1A1A;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-content-area h1, 
.policy-content-area h2, 
.policy-content-area h3 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.policy-content-area .disclaimer-container {
  background-color: #FFFFFF;
}

.policy-content-area a {
  color: #0077B6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content-area a:hover {
  color: #005A8C;
  text-decoration: underline;
}

.policy-content-area ul {
  margin-bottom: 1.5rem;
}

.policy-content-area li::marker {
  color: #0077B6;
}

@media (max-width: 768px) {
  .policy-content-area {
    line-height: 1.6;
  }
  .policy-content-area .disclaimer-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-area { font-family: 'Source Serif 4', serif; background-color: #F8FAFC; color: #1A1A1A; overflow-x: hidden; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.policy-content-area h1, .policy-content-area h2, .policy-content-area h3 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.policy-content-area .policy-section {
  margin-bottom: 2rem;
}
.policy-content-area a {
  transition: all 0.3s ease;
}
.policy-content-area .cookie-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.policy-content-area .policy-header p {
  border-left: 4px solid #0077B6;
  padding-left: 1.5rem;
}

/* ===== PAGE: blog ===== */
.blog-list-section .blog-card { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.blog-list-section .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-list-section .js-category-btn.active { background-color: #0077B6 !important; color: white !important; }
.blog-list-section input::placeholder { color: rgba(85, 85, 85, 0.5); opacity: 1; }
.blog-list-section .js-blog-post { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.blog-list-section .js-blog-post:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.main-comment-container {
    animation: commentFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
}

.comment-content {
    color: #1A1A1A;
    font-family: 'Source Serif 4', serif;
}

@keyframes commentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reply-comment-container {
    animation: replyFadeIn 0.6s ease-out;
}

.avatar-box-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
}

.comment-content-sm {
    font-family: 'Source Serif 4', serif;
    color: #555555;
}

@keyframes replyFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== PAGE TEMPLATE: sydney ===== */
.editorial-layout {
    font-family: 'Source Serif 4', serif;
}

.editorial-layout .font-sans {
    font-family: 'Inter', sans-serif !important;
}

.detail-page-wrapper .editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #334155;
}

.detail-page-wrapper .editorial-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .detail-page-wrapper .editorial-content h2 {
        font-size: 2.25rem;
    }
}

.detail-page-wrapper .editorial-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.detail-page-wrapper .editorial-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-page-wrapper .editorial-content ul li::before {
    content: '';
}

.detail-page-wrapper blockquote {
    border-left: 4px solid #0077B6;
    padding: 2rem;
    margin: 3rem 0;
    background: #F1F5F9;
    font-style: italic;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
}

.js-dropdown-content {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE TEMPLATE: melbourne ===== */
.editorial-layout {
    font-family: 'Source Serif 4', serif;
}

.editorial-layout .font-sans {
    font-family: 'Inter', sans-serif !important;
}

.detail-page-wrapper .editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #334155;
}

.detail-page-wrapper .editorial-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .detail-page-wrapper .editorial-content h2 {
        font-size: 2.25rem;
    }
}

.detail-page-wrapper .editorial-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.detail-page-wrapper .editorial-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-page-wrapper .editorial-content ul li::before {
    content: '';
}

.detail-page-wrapper blockquote {
    border-left: 4px solid #0077B6;
    padding: 2rem;
    margin: 3rem 0;
    background: #F1F5F9;
    font-style: italic;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
}

.js-dropdown-content {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE TEMPLATE: best-sports-bars ===== */
.editorial-layout {
    font-family: 'Source Serif 4', serif;
}

.editorial-layout .font-sans {
    font-family: 'Inter', sans-serif !important;
}

.detail-page-wrapper .editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #334155;
}

.detail-page-wrapper .editorial-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .detail-page-wrapper .editorial-content h2 {
        font-size: 2.25rem;
    }
}

.detail-page-wrapper .editorial-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.detail-page-wrapper .editorial-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-page-wrapper .editorial-content ul li::before {
    content: '';
}

.detail-page-wrapper blockquote {
    border-left: 4px solid #0077B6;
    padding: 2rem;
    margin: 3rem 0;
    background: #F1F5F9;
    font-style: italic;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
}

.js-dropdown-content {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE TEMPLATE: craft-breweries ===== */
.editorial-layout {
    font-family: 'Source Serif 4', serif;
}

.editorial-layout .font-sans {
    font-family: 'Inter', sans-serif !important;
}

.detail-page-wrapper .editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #334155;
}

.detail-page-wrapper .editorial-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .detail-page-wrapper .editorial-content h2 {
        font-size: 2.25rem;
    }
}

.detail-page-wrapper .editorial-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.detail-page-wrapper .editorial-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-page-wrapper .editorial-content ul li::before {
    content: '';
}

.detail-page-wrapper blockquote {
    border-left: 4px solid #0077B6;
    padding: 2rem;
    margin: 3rem 0;
    background: #F1F5F9;
    font-style: italic;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
}

.js-dropdown-content {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.editorial-layout {
    font-family: 'Source Serif 4', serif;
}

.editorial-layout .font-sans {
    font-family: 'Inter', sans-serif !important;
}

.detail-page-wrapper .editorial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #334155;
}

.detail-page-wrapper .editorial-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .detail-page-wrapper .editorial-content h2 {
        font-size: 2.25rem;
    }
}

.detail-page-wrapper .editorial-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.detail-page-wrapper .editorial-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.detail-page-wrapper .editorial-content ul li::before {
    content: '';
}

.detail-page-wrapper blockquote {
    border-left: 4px solid #0077B6;
    padding: 2rem;
    margin: 3rem 0;
    background: #F1F5F9;
    font-style: italic;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.site-header .nav-link {
    position: relative;
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0077B6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-header .nav-link:hover::after {
    width: 80%;
}

.footer-block h3 {
    font-family: 'Inter', sans-serif;
}

.js-dropdown-content {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}