:root {
    --primary-bg: #FFFDF5;
    --secondary-bg: #FEF9C3;
    --text-primary: #1E1B18;
    --text-secondary: #5C5346;
    --accent: #EAB308;
    --border-color: rgba(234, 179, 8, 0.15);
    --shadow-color: rgba(234, 179, 8, 0.08);
    --blob-1: rgba(254, 240, 138, 0.45);
    --blob-2: rgba(253, 224, 71, 0.35);
    --blob-3: rgba(253, 186, 116, 0.25);
    --blob-4: rgba(187, 247, 208, 0.25);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.aurora-container {
    position: relative;
    z-index: 1;
}

.aurora-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.blob-yellow-1 {
    background-color: var(--blob-1);
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
}

.blob-yellow-2 {
    background-color: var(--blob-2);
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: -10%;
}

.blob-orange {
    background-color: var(--blob-3);
    width: 350px;
    height: 350px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-green {
    background-color: var(--blob-4);
    width: 450px;
    height: 450px;
    bottom: 5%;
    left: 10%;
}

.editorial-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -10px var(--shadow-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -5px rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.3);
}

.btn-glowing-primary {
    background: linear-gradient(135deg, #FDE047 0%, #EAB308 100%);
    color: #1E1B18;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(234, 179, 8, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glowing-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px 0 rgba(234, 179, 8, 0.45);
}

.btn-outline-secondary {
    border: 1px solid rgba(234, 179, 8, 0.4);
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1E1B18;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-secondary:hover {
    background-color: rgba(254, 249, 195, 0.6);
    border-color: #EAB308;
    transform: scale(1.03);
}

.font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    letter-spacing: -0.02em;
}

/* ===== header ===== */
.datachange-header {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-header .font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-header .js-mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ===== hero ===== */
.datachange-hero {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-hero h1,
.datachange-hero h2,
.datachange-hero h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

/* ===== featured-case ===== */
.featured-case-section {
    background-color: #FFFDF5;
}

.featured-case-section .js-tab-btn {
    transition: all 0.3s ease;
}

.featured-case-section .js-tab-content {
    animation: featuredCaseFadeIn 0.4s ease-in-out;
}

@keyframes featuredCaseFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

/* ===== case-collections ===== */
.case-collections-section {
    background-color: #FFFDF5;
    font-family: 'Inter', system-ui, sans-serif;
}

.case-collections-section h2,
.case-collections-section h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.case-collections-section .js-search-input::placeholder {
    color: rgba(92, 83, 70, 0.6);
    opacity: 1;
}

.case-collections-section .active-filter {
    background-color: #EAB308;
    color: #1E1B18;
    border-color: #EAB308;
}

/* ===== example-cases ===== */
.example-cases-section {
    position: relative;
    background-color: #FFFDF5;
    color: #1E1B18;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

.example-cases-section .font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.example-cases-section .case-card {
    border: 1px solid rgba(234, 179, 8, 0.15);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.example-cases-section .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.1);
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(234, 179, 8, 0.3);
}

.example-cases-section .js-search-input::placeholder {
    color: #8C7E6C;
    opacity: 0.8;
}

.example-cases-section .js-search-input:focus {
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

/* ===== client-logos ===== */
.client-logos-section {
    position: relative;
    z-index: 10;
}

.client-logos-section .logo-item img {
    transition: all 0.3s ease;
}

/* ===== case-numbers ===== */
.case-numbers-block {
    font-family: 'Inter', system-ui, sans-serif;
}

.case-numbers-block h2,
.case-numbers-block h3,
.case-numbers-block h4,
.case-numbers-block h5 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.case-numbers-block .js-tab-btn.active {
    border-color: #EAB308;
    color: #1E1B18;
}

/* ===== scope-lists ===== */
.scope-lists-section {
    font-family: 'Inter', system-ui, sans-serif;
}

.scope-lists-section h2,
.scope-lists-section h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.scope-lists-section .dimmed {
    opacity: 0.35;
    filter: grayscale(80%);
}

.scope-lists-section .highlighted {
    transform: scale(1.01);
    background-color: rgba(254, 249, 195, 0.25);
    border-radius: 8px;
    padding: 4px;
}

/* ===== comparison-table ===== */
.datachange-comparison {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-comparison .font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

/* ===== footer ===== */
.datachange-footer {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-title {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-footer-disclaimer {
    background-color: #FEF9C3;
    border-color: rgba(234, 179, 8, 0.3);
}

.datachange-footer input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input:-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input::-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-header {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-header .font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-header .js-mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.datachange-footer {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-title {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-footer-disclaimer {
    background-color: #FEF9C3;
    border-color: rgba(234, 179, 8, 0.3);
}

.datachange-footer input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input:-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input::-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.repeat-theme-block {
    font-family: 'Inter', system-ui, sans-serif;
}

.repeat-theme-block .repeat-theme-hero-title {
    font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #1E1B18;
}

@media (min-width: 768px) {
    .repeat-theme-block .repeat-theme-hero-title {
        font-size: 42px;
    }
}

.repeat-theme-block .repeat-theme-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
}

@media (min-width: 768px) {
    .repeat-theme-block .repeat-theme-hero-subtitle {
        font-size: 18px;
    }
}

.repeat-theme-block .repeat-theme-filter-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #5C5346;
}

.repeat-theme-block .repeat-theme-search-input {
    background-color: #FFFFFF;
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #1E1B18;
    border-radius: 6px;
    padding: 10px 16px 10px 40px;
    font-size: 14px;
    width: 100%;
    line-height: 1.5;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.repeat-theme-block .repeat-theme-search-input:focus {
    border-color: #EAB308;
    outline: none;
}

.repeat-theme-block .repeat-theme-search-input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.repeat-theme-block .repeat-theme-filter-select {
    background-color: #FFFFFF;
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #1E1B18;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    transition: border-color 0.2s;
    cursor: pointer;
}

.repeat-theme-block .repeat-theme-filter-select:focus {
    border-color: #EAB308;
    outline: none;
}

.repeat-theme-block .repeat-theme-card {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(234, 179, 8, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.repeat-theme-block .repeat-theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.3);
}

.repeat-theme-block .repeat-theme-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.repeat-theme-block .repeat-theme-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repeat-theme-block .repeat-theme-card-meta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #EAB308;
}

.repeat-theme-block .repeat-theme-card-title {
    font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #1E1B18;
}

@media (min-width: 768px) {
    .repeat-theme-block .repeat-theme-card-title {
        font-size: 20px;
    }
}

.repeat-theme-block .repeat-theme-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #5C5346;
}

@media (min-width: 768px) {
    .repeat-theme-block .repeat-theme-card-desc {
        font-size: 14px;
    }
}

.repeat-theme-block .repeat-theme-card-btn {
    background-color: #FEF9C3;
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #1E1B18;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    text-align: center;
}

.repeat-theme-block .repeat-theme-card-btn:hover {
    background-color: #EAB308;
    border-color: #EAB308;
}

.repeat-theme-block .repeat-theme-no-results-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #5C5346;
}


/* ===== PAGE: dbeaver-case ===== */
.dbeaver-case-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.dbeaver-case-section code {
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}
.dbeaver-case-section .js-nav-item.bg-\[\#FEF9C3\] {
  background-color: #FEF9C3;
  color: #1E1B18;
  border-left: 3px solid #EAB308;
}
.dbeaver-case-section .js-nav-item {
  border-left: 3px solid transparent;
}

/* ===== PAGE: about ===== */
.about-page {
  font-family: 'Inter', system-ui, sans-serif;
}
.about-page .js-tariff-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-page input::placeholder,
.about-page textarea::placeholder {
  color: rgba(92, 83, 70, 0.5);
}

/* ===== PAGE: privacy ===== */
.privacy-block .js-toc-link.active {
  color: #1E1B18;
  background-color: rgba(254, 249, 195, 0.8);
  border-left-color: #EAB308;
  font-weight: 600;
}

.privacy-block input::placeholder {
  color: rgba(92, 83, 70, 0.5) !important;
  opacity: 1 !important;
}

.privacy-block mark {
  background-color: rgba(254, 240, 138, 0.9);
  color: #1E1B18;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 2px;
}

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

.terms-block .cabinet-heading {
  font-family: 'Cabinet Grotesk', 'Inter', sans-serif;
}

.terms-block input::placeholder {
  color: #8C8273;
  opacity: 0.8;
}

.terms-block .aurora-blob {
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.terms-block .active-toc-link {
  color: #EAB308;
  border-left-color: #EAB308;
  padding-left: 1rem;
  font-weight: 600;
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content-block { background-color: #FFFDF5; color: #1E1B18; font-family: 'Inter', sans-serif; position: relative; overflow: hidden; } .disclaimer-content-block .font-cabinet { font-family: 'Cabinet Grotesk', 'Inter', sans-serif; } .disclaimer-content-block .aurora-blob { position: absolute; filter: blur(80px); border-radius: 50%; z-index: 0; pointer-events: none; } .disclaimer-content-block .blob-1 { background: rgba(254, 240, 138, 0.45); width: 300px; height: 300px; top: 5%; left: -50px; } .disclaimer-content-block .blob-2 { background: rgba(253, 224, 71, 0.35); width: 400px; height: 400px; bottom: 10%; right: -100px; } .disclaimer-content-block .blob-3 { background: rgba(253, 186, 116, 0.25); width: 250px; height: 250px; top: 40%; left: 60%; } .disclaimer-content-block .content-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(234, 179, 8, 0.15); box-shadow: 0 10px 30px rgba(234, 179, 8, 0.08); }

.main-comment-card {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.avatar-wrapper {
    user-select: none;
}

.comment-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reply-comment-card {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.avatar-wrapper {
    user-select: none;
}

.comment-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* ===== PAGE TEMPLATE: practical-cases ===== */
.datachange-header {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-header .font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-header .js-mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.datachange-detail-template {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #FFFDF5;
}

.datachange-detail-template .font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-detail-template .detail-content h2 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h2 {
        font-size: 28px;
    }
}

.datachange-detail-template .detail-content h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h3 {
        font-size: 22px;
    }
}

.datachange-detail-template .detail-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content li {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.datachange-detail-template .detail-content li::before {
    content: "•";
    color: #EAB308;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.datachange-detail-template .js-comment-like.active {
    color: #EAB308;
}

.datachange-detail-template .js-comment-like.active i {
    font-weight: 900;
}

.datachange-detail-template .custom-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.datachange-footer {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-title {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-footer-disclaimer {
    background-color: #FEF9C3;
    border-color: rgba(234, 179, 8, 0.3);
}

.datachange-footer input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input:-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input::-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

/* ===== PAGE TEMPLATE: change-analysis ===== */
.datachange-header {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-header .font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-header .js-mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.datachange-detail-template {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #FFFDF5;
}

.datachange-detail-template .font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-detail-template .detail-content h2 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h2 {
        font-size: 28px;
    }
}

.datachange-detail-template .detail-content h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h3 {
        font-size: 22px;
    }
}

.datachange-detail-template .detail-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content li {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.datachange-detail-template .detail-content li::before {
    content: "•";
    color: #EAB308;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.datachange-detail-template .js-comment-like.active {
    color: #EAB308;
}

.datachange-detail-template .js-comment-like.active i {
    font-weight: 900;
}

.datachange-detail-template .custom-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.datachange-footer {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-title {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-footer-disclaimer {
    background-color: #FEF9C3;
    border-color: rgba(234, 179, 8, 0.3);
}

.datachange-footer input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input:-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input::-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

/* ===== PAGE TEMPLATE: decision-index ===== */
.datachange-header {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-header .font-header {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-header .js-mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.datachange-header .js-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.datachange-detail-template {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #FFFDF5;
}

.datachange-detail-template .font-headers {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-detail-template .detail-content h2 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h2 {
        font-size: 28px;
    }
}

.datachange-detail-template .detail-content h3 {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E1B18;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .datachange-detail-template .detail-content h3 {
        font-size: 22px;
    }
}

.datachange-detail-template .detail-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.datachange-detail-template .detail-content li {
    font-size: 14px;
    line-height: 1.6;
    color: #5C5346;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.datachange-detail-template .detail-content li::before {
    content: "•";
    color: #EAB308;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.datachange-detail-template .js-comment-like.active {
    color: #EAB308;
}

.datachange-detail-template .js-comment-like.active i {
    font-weight: 900;
}

.datachange-detail-template .custom-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.datachange-footer {
    font-family: 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-title {
    font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
}

.datachange-footer .datachange-footer-disclaimer {
    background-color: #FEF9C3;
    border-color: rgba(234, 179, 8, 0.3);
}

.datachange-footer input::placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input:-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}

.datachange-footer input::-ms-input-placeholder {
    color: #5C5346;
    opacity: 0.6;
}