/*
Theme Name: Dads Supporting Dads
Theme URI: https://dadssupportingdads.org
Author: Dads Supporting Dads
Author URI: https://dadssupportingdads.org
Description: A custom theme for Dads Supporting Dads - a not-for-profit network of leading organizations within the dad space.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dads-supporting-dads
*/

/* Reset box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Base styles */
html {
    background-color: #65b59b;
    scroll-behavior: smooth;
}

body {
    background-color: #f9f6ec;
    color: #333;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0;
}

/* Global heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

* {
    scroll-margin-top: 70px;
}

/* Main Content & Entry Header */
#main-content {
    width: 100%;
}

/* Fixed page title - corner tab in top left */
.entry-header {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 10000;
    padding: 12px 16px 12px 24px;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 320px;
}

.entry-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: -0.3px;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    word-break: break-word;
}

/* Responsive positioning */
@media (max-width: 768px) {
    .entry-header {
        position: static;
        top: auto;
        left: auto;
        padding: 12px 16px;
        border-radius: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        max-width: 100%;
    }

    .entry-title {
        font-size: 12px;
    }
}

/* Dividers */
.dividerhorizon {
    width: 100%;
    background: white;
    height: 6px;
    display: block;
}

.dividerhorizon-green {
    width: 100%;
    background: #65b59b;
    height: 6px;
    display: block;
}

.vertical-divider {
    width: 5px;
    height: 80px;
    background-color: #c46028;
    margin: 0 10px;
    align-self: center;
}

/* CTA Buttons */
.cta-button {
    cursor: pointer;
    align-items: center;
    border: 3px solid currentColor;
    border-radius: 30px;
    display: inline-flex;
    font-weight: bold;
    justify-content: center;
    padding: 16px 0px;
}

.cta-button:hover {
    cursor: pointer;
    background: #d4d3be;
}

#about .cta-button:hover {
    background: #d4d3be;
}

.cta-dot {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.5rem;
    margin: 0 7.5px;
}

.tab-active {
    font-size: 1.5rem;
    margin: 0;
}

/* Icon animations */
.fl-icon a {
    cursor: pointer;
}

.fl-icon a:hover {
    color: #f9f6c7 !important;
}

#about .fl-icon a:hover {
    color: rgb(79, 79, 79) !important;
}

/* Press Banner */
.press-banner {
    text-align: center;
    background-color: #65b59b;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}

.press-banner button {
    background-color: #fff;
    color: #65b59b;
    border: none;
    border-radius: 50px;
    padding: 5px 15px;
    margin: 0 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Header */
header {
    align-items: center;
    background: #65b59b;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    position: sticky;
    top: 8px;
    z-index: 9999;
    height: 53px;
}

header nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

nav a {
    flex: 0 0 auto;
    margin: 0;
    padding: 5px;
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
}

header nav a {
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}

header nav a.active {
    border-bottom-color: #fff;
}

.logo {
    color: #65b59b;
    font-weight: bold;
    text-align: right;
}

/* Banners */
.tabs-banner {
    display: block;
    margin: 0;
    max-height: 375px;
    object-fit: cover;
    width: 100%;
}

.top-banner {
    display: block;
    margin: 0;
    max-height: 375px;
    height: 157px;
    object-fit: cover;
    width: 100%;
    margin-left: 25px;
}

.hero-wrapper {
    overflow-x: hidden;
}

/* Hero Slider */
.hero-slider-wrapper {
    overflow-x: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    transition: height 0.3s ease;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hero-slide:first-child.active {
    position: relative;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    position: relative;
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide-image {
    display: block;
    margin: 0;
    max-height: 375px;
    height: 157px;
    object-fit: cover;
    width: 100%;
    margin-left: 25px;
}

/* Hero Slider responsive - match .top-banner */
@media (min-width: 500px) {
    .hero-slide-image {
        max-height: 550px;
        height: auto;
        object-fit: contain;
        margin: 0;
    }
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.hero-slider-prev {
    left: 15px;
}

.hero-slider-next {
    right: 15px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-slider-dot:hover {
    transform: scale(1.2);
}

.hero-slider-dot.active {
    background: #fff;
}

/* Hero Slider - Two Column Slide */
.hero-slide-two-column {
    display: flex;
    flex-direction: row;
    height: 550px;
    max-height: 550px;
}

.hero-slide-image-column {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

.hero-slide-column-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-slide-content-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 60px;
    box-sizing: border-box;
}

.hero-slide-content-inner {
    width: 100%;
    max-width: 600px;
}

.hero-slide-heading {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-slide-subheading {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 25px 0;
    opacity: 0.85;
    font-style: italic;
}

.hero-slide-paragraph {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 35px 0;
    opacity: 0.95;
}

.hero-slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 3px solid currentColor;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
}

.hero-slide-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-slide-cta.primary {
    background: rgba(255, 255, 255, 0.15);
}

.hero-slide-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-slide-cta:hover i {
    transform: translateX(4px);
}

/* Sections */
.about-section,
.highlight-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
    scroll-margin-top: 60px;
}

#partners {
    scroll-margin-top: 130px;
}

#join.highlight-section {
    flex-direction: column-reverse;
}

.about-section {
    background: #f4f1dd;
    color: #c46028;
}

.highlight-section {
    background: #c46028;
    color: #fff;
}

.highlight-section img {
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

/* Logo Banner */
.logo-banner {
    background-color: #d4d3be;
    display: flex;
    height: 150px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-banner a:hover {
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

/* Content */
.content {
    padding: 20px;
    text-align: center;
    width: 100%;
}

.content p {
    text-align: left;
    font-size: 1.25rem;
}

/* Footer Buttons */
.footer .cta-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Tabs */
.tab {
    display: flex;
    justify-content: center;
    flex: 1;
    text-align: left;
    margin: 20px 0px;
}

.tab.first {
    text-align: right;
}

.tabs {
    background: linear-gradient(
        90deg,
        #c45f28 0%,
        #c45f28 50%,
        #f3f1dd 50%,
        #f3f1dd 100%
    );
    display: flex;
    justify-content: center;
}

.tab button {
    background-color: #f4f1dd;
    border: none;
    color: #c46028;
    cursor: pointer;
    font-size: 1em;
    font-size: 12px;
    font-weight: bold;
    padding: 20px 0;
    border: 4px solid #c45f28;
    border-radius: 50px;
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab button span {
    flex: 1;
}

.tab button.first {
    background-color: #c46028;
    color: #f4f1dd;
    border-color: #f4f1dd;
}

.tab button:hover {
    background: lightgray;
}

.tab button.first:hover {
    background: #b15323;
}

.tab-content {
    background-color: #fff;
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

#community.tab-content {
    background-color: #c46028;
    color: #fff;
    padding-top: 1px;
}

#partners.tab-content {
    background-color: #f4f1dd;
    color: #c46028;
}

/* Forms */
input,
textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #65b59b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer h3 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    margin-top: 0px;
}

.footerTwo {
    display: block;
    padding: 20px 5px;
    text-align: center;
    background-color: #f4f1dd;
    color: #c46028;
}

.footerTwo a {
    color: #c46028;
}

/* Stack to Side */
.stack-to-side {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 20px;
    text-align: left;
}

.stack-to-side > * {
    max-width: 600px;
    width: 100%;
}

/* Rules */
.rules-right {
    border: 0;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
}

/* Responsive Visibility */
.hideOnMobileInline {
    display: none;
}

.hideOnDesktopInline {
    display: inline-block;
}

.hideOnMobile {
    display: none;
}

.hideOnDesktop {
    display: block;
}

/* Mobile Banner */
@media (min-width: 500px) {
    .top-banner {
        max-height: 550px;
        height: auto;
        object-fit: contain;
        margin: 0;
    }
}

/* Desktop layout */
@media (min-width: 1100px) {
    .hideOnDesktopInline {
        display: none;
    }

    .hideOnMobileInline {
        display: inline-block;
    }

    .hideOnDesktop {
        display: none;
    }

    .hideOnMobile {
        display: block;
    }

    header {
        top: 20px;
        height: auto;
        border-bottom: 4px solid white;
        border-top: 4px solid white;
    }

    .about-section,
    .highlight-section {
        min-height: 40vh;
    }

    .content p {
        font-size: 1.5vw;
        font-size: x-large;
        padding: 0;
        margin: 0;
        margin-top: 20px;
        line-height: 1.5;
    }

    .vertical-divider {
        height: 150px;
    }

    .tab {
        margin: 40px 0px;
    }

    #join.highlight-section,
    .about-section,
    .highlight-section {
        flex-direction: row;
        height: 425px;
    }

    .about-section {
        flex-direction: row-reverse;
    }

    .highlight-section img,
    .logo-banner {
        border-radius: 0;
        height: 100%;
        margin: 0;
        padding: 0;
        width: 55%;
    }

    .logo-container {
        height: 225px;
    }

    .logo-container img {
        margin-top: 0;
        max-height: 225px;
    }

    .highlight-section .content,
    .about-section .content {
        border-radius: 0;
        height: 100%;
        margin: 0;
        padding: 0;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px;
    }

    .stack-to-side {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .stack-to-side > * {
        max-width: none;
    }

    /* Desktop Buttons */
    .highlight-section .content .cta-button,
    .about-section .content .cta-button {
        align-items: center;
        border: 3px solid currentColor;
        border-radius: 53px;
        cursor: pointer;
        display: inline-flex;
        font-weight: bold;
        justify-content: center;
        padding: 16px 32px;
        font-size: 30px;
        min-height: 70px;
        padding-left: 9px;
        padding-right: 9px;
    }

    .rules-left {
        width: 48%;
        float: left;
    }

    .rules-right {
        width: 50%;
        float: right;
    }

    .rules-container {
        max-height: 420px;
        overflow: hidden;
        padding-left: 20px;
        padding-right: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    #community.tab-content {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    nav a {
        transform: scaleX(1.2);
        padding: 0.5rem 1rem;
    }

    .tab,
    .tab.first {
        text-align: center;
    }

    .tab button {
        font-size: 1.5em;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (min-width: 1780px) {
    .content p {
        font-size: xx-large;
    }

    .logo-container {
        gap: 25px;
    }

    #join.highlight-section,
    .about-section,
    .highlight-section {
        height: 500px;
    }
}

/* Rules Container */
.rules-container {
    background-color: #c46028;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}

.rules-container h2 {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rules-container ol {
    counter-reset: rule-item;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rules-container ol li {
    counter-increment: rule-item;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.rules-container ol li::before {
    content: counter(rule-item);
    position: absolute;
    left: 0;
    top: 0px;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #fff;
    color: #c46028;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Form */
#partners .partners-form {
    background: #f4f1dd;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

#partners .partners-options {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

#partners .partners-options label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #c46028;
}

#partners .partners-options input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #c46028;
}

#partners .form-input,
#partners .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

#partners .form-input:focus,
#partners .form-textarea:focus {
    border-color: #c46028;
    outline: none;
}

#partners .form-input::placeholder,
#partners .form-textarea::placeholder {
    color: #888;
}

#partners .form-textarea {
    min-height: 150px;
    resize: vertical;
}

#partners .partners-cta {
    text-align: right;
    margin-top: 1rem;
}

#partners .partners-cta .cta-button {
    border-color: #fff;
    color: #fff;
    background-color: #c46028;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: bold;
}

#partners .partners-cta .cta-button:hover {
    background-color: #b15323;
}

/* Logo Nav */
nav {
    position: relative;
}

nav .logonav,
nav .support-logonav {
    margin: 0;
    padding: 0;
    transform: scaleX(1);
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
    width: 60px;
    height: 60px;
    border: 0;
    margin-bottom: -10px;
    margin-top: -10px;
}

nav .support-logonav {
    width: 30px;
    height: 30px;
}

nav .logonav img {
    display: block;
    width: 100%;
    height: auto;
    border: 2px solid white;
}

.show-logo nav .logonav,
.show-logo nav .support-logonav {
    max-width: 60px;
    opacity: 1;
}

.hide-transform {
    display: none;
}

@media (min-width: 1100px) {
    nav .logonav {
        overflow: hidden;
        max-width: 0;
        opacity: 0;
        transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
        width: 100px;
        height: 100px;
        margin-top: -40px;
        margin-bottom: -40px;
    }

    nav .logonav img {
        display: block;
        width: 100%;
        height: auto;
        left: 0px;
        border: 3px solid white;
    }

    .show-logo nav .logonav {
        max-width: 100px;
        opacity: 1;
    }
}

/* Animations */
@keyframes arrow-glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }
}

@keyframes arrow-glow-orange {
    0% {
        text-shadow: 0 0 5px rgba(177, 83, 35, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(177, 83, 35, 1);
    }
    100% {
        text-shadow: 0 0 5px rgba(235, 87, 13, 0.8);
    }
}

@keyframes arrow-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.fl-icon a {
    display: inline-block;
    animation: arrow-glow 2s infinite ease-in-out, arrow-bounce 1.5s infinite ease-in-out;
}

#about .fl-icon a {
    animation: arrow-glow-orange 2s infinite ease-in-out, arrow-bounce 1.5s infinite ease-in-out;
}
/* ===== NEW BLOCKS CSS ===== */

/* Block 1: Table of Contents */
.toc-section {
    background: #f4f1dd;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.toc-card {
    background: white;
    padding: 20px;
    text-decoration: none;
    border-left: 4px solid #65b59b;
    transition: background 0.2s;
}

.toc-card:hover {
    background: #d4d3be;
}

.toc-card h3 {
    font-family: "Roboto", sans-serif;
    color: #65b59b;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 8px 0;
    letter-spacing: 0.15em;
}

.toc-card p {
    color: #333;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1000px) {
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .toc-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .toc-section { padding: 20px; }
}

/* Block 2: Statistics Section */
.stats-section {
    color: white;
    padding: 40px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    text-align: left;
}

.stats-header h2 {
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 16px 0;
    letter-spacing: 0.15em;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    transition: background 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    color: white;
}

@media (max-width: 1000px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-section { padding: 20px; }
    .stat-number { font-size: 32px; }
}

/* Block 3: Testimonials Grid */
.testimonials-section {
    background: #f4f1dd;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    color: #c46028;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.testimonials-header h2 {
    font-family: "Roboto", sans-serif;
    color: #65b59b;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.15em;
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 20px;
    border-top: 8px solid #c46028;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.quote-text {
    color: #333;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #65b59b;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    color: #65b59b;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.author-title {
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

@media (max-width: 1000px) {
    .testimonials-grid { flex-direction: column; }
    .testimonial-card { flex: 1 0 auto; }
}

@media (max-width: 500px) {
    .testimonials-grid { gap: 20px; padding: 20px; }
    .testimonials-section { padding: 20px; }
}

/* Block 4: Featured Resources Grid */
.resources-section {
    background: #f4f1dd;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-header {
    text-align: center;
    margin-bottom: 40px;
}

.resources-header h2 {
    font-family: "Roboto", sans-serif;
    color: #65b59b;
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 16px 0;
    letter-spacing: 0.15em;
}

.resources-header p {
    color: #333;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: white;
    border: 1px solid #d4d3be;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.resource-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.resource-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-content {
    padding: 20px;
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.resource-card h3 {
    font-family: "Roboto", sans-serif;
    color: #65b59b;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.resource-card p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.resource-link {
    color: #c46028;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.resource-link:hover {
    color: #65b59b;
}

@media (max-width: 1000px) {
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .resources-grid { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .resources-section { padding: 20px; }
}

/* Block: Community Split Section */
.community-split-section {
    display: flex;
    flex-direction: row;
    color: white;
}

.community-split-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.community-split-tagline {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: block;
}

.community-split-heading {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}

.community-split-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.community-split-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.community-split-btn-primary,
.community-split-btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.community-split-btn-primary {
    background: #c46028;
    color: white;
    border: 2px solid transparent;
}

.community-split-btn-primary:hover {
    background: #a04e1f;
}

.community-split-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.community-split-btn-secondary:hover {
    background: white;
    color: #65b59b;
}

/* Dynamic button colors based on background */
.community-split-btn-primary[data-bg-color="#f3f1dd"] {
    background: #c46028;
    color: white;
}

.community-split-btn-secondary[data-bg-color="#f3f1dd"] {
    color: #c46028;
    border-color: #c46028;
}

.community-split-btn-secondary[data-bg-color="#f3f1dd"]:hover {
    background: #c46028;
    color: white;
}

.community-split-btn-primary[data-bg-color="#c46028"] {
    background: #f4f1dd;
    color: #c46028;
}

.community-split-btn-primary[data-bg-color="#c46028"]:hover {
    background: white;
    color: #c46028;
}

.community-split-btn-secondary[data-bg-color="#c46028"] {
    color: white;
    border-color: white;
}

.community-split-btn-secondary[data-bg-color="#c46028"]:hover {
    background: white;
    color: #c46028;
}

.community-split-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.community-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Block: Book Promo Section */
.book-promo-section {
    padding: 80px 40px;
    color: white;
    position: relative;
    box-sizing: border-box;
}

.book-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.book-promo-cover {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.book-cover-3d {
    position: relative;
    width: 300px;
    height: 450px;
}

.book-cover-front {
    position: relative;
    z-index: 10;
    background: #f4f1dd;
    border: 4px solid #f9f6ec;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.book-cover-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: block;
}

.book-cover-front i {
    font-size: 64px;
    color: #c46028;
    margin-bottom: 24px;
}

.book-title {
    font-size: 24px;
    font-weight: 900;
    color: #65b59b;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.book-divider {
    width: 64px;
    height: 4px;
    background: #65b59b;
    margin: 16px 0;
}

.book-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.book-promo-content {
    flex: 1;
}

.book-promo-tagline {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
    color: #f9f6c7;
}

.book-promo-heading {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.book-promo-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 700px;
}

.book-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.book-promo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.book-promo-features li i {
    color: #65b59b;
    margin-right: 12px;
    font-size: 18px;
}

.book-promo-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.book-promo-btn {
    padding: 16px 32px;
    background: #f4f1dd;
    color: #c46028;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.book-promo-btn:hover {
    background: white;
    color: #65b59b;
}

.book-promo-link {
    color: #f4f1dd;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    transition: color 0.3s;
}

.book-promo-link:hover {
    color: white;
}

/* Dynamic button colors for book-promo based on background */
.book-promo-btn[data-bg-color="#f3f1dd"] {
    background: #c46028;
    color: white;
}

.book-promo-btn[data-bg-color="#f3f1dd"]:hover {
    background: #a04e1f;
    color: white;
}

.book-promo-link[data-bg-color="#f3f1dd"] {
    color: #c46028;
}

.book-promo-link[data-bg-color="#f3f1dd"]:hover {
    color: #a04e1f;
}

.book-promo-btn[data-bg-color="#65b59b"] {
    background: #f4f1dd;
    color: #65b59b;
}

.book-promo-btn[data-bg-color="#65b59b"]:hover {
    background: white;
    color: #65b59b;
}

.book-promo-link[data-bg-color="#65b59b"] {
    color: #f4f1dd;
}

/* Block: Downloads Section */
.downloads-section {
    padding: 80px 40px;
}

.downloads-container {
    max-width: 1200px;
    margin: 0 auto;
}

.downloads-header {
    text-align: center;
    margin-bottom: 40px;
}

.downloads-heading {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin: 0 0 16px 0;
}

.downloads-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 auto;
    max-width: 600px;
}

/* Downloads Section Filters */
.downloads-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 10px 0;
}

.filter-button {
    padding: 10px 24px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
}

.filter-button:hover {
    border-color: #65b59b;
    color: #65b59b;
}

.filter-button.filter-active {
    background: #65b59b;
    border-color: #65b59b;
    color: white;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Download Card */
.download-card {
    background: white;
    padding: 28px 24px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-top: none;
    border-bottom: 4px solid #65b59b;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Download Icon */
.download-icon-wrapper {
    margin-bottom: 18px;
}

.download-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Download Content */
.download-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.download-description {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0 0 auto 0;
    padding-bottom: 16px;
}

/* Download Footer (meta + icon) */
.download-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.download-meta-inline {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.download-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    opacity: 0.7;
}

.download-icon-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Downloads Footer */
.downloads-footer {
    text-align: center;
    margin-top: 48px;
}

.browse-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #65b59b;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.browse-all-button:hover {
    background: #4a8f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 181, 155, 0.3);
}

/* Block: Latest from the Blog */
.latest-blog-section {
    padding: 80px 40px;
}

.latest-blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.latest-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 24px;
}

.latest-blog-heading {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.latest-blog-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.latest-blog-view-all {
    color: #c46028;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid #c46028;
    padding-bottom: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.latest-blog-view-all:hover {
    color: #a84820;
    border-bottom-color: #a84820;
}

.latest-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card-image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #65b59b;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.blog-card-date,
.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i,
.blog-card-read-time i {
    font-size: 11px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #65b59b;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.blog-card-read-more {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #65b59b;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.blog-card-read-more:hover {
    gap: 10px;
}

.blog-card-read-more i {
    font-size: 12px;
}

/* Block: Featured Resource */
.featured-resource-section {
    padding: 80px 40px;
}

.featured-resource-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.featured-resource-content {
    flex: 1;
    color: white;
}

.featured-resource-tagline {
    display: block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}

.featured-resource-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.featured-resource-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    opacity: 0.95;
}

.featured-resource-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.featured-resource-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.featured-resource-button-primary {
    background: white;
    color: #333;
}

.featured-resource-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.featured-resource-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(4px);
}

.featured-resource-button-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
}

.featured-resource-button i {
    font-size: 14px;
}

.featured-resource-image-wrapper {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.featured-resource-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-resource-image-placeholder {
    width: 280px;
    height: 380px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.featured-resource-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Responsive: Featured Resource */
@media (max-width: 1024px) {
    .featured-resource-container {
        gap: 40px;
    }

    .featured-resource-title {
        font-size: 40px;
    }

    .featured-resource-description {
        font-size: 15px;
    }

    .featured-resource-image-wrapper {
        min-width: 250px;
    }

    .featured-resource-image-placeholder {
        width: 240px;
        height: 320px;
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .featured-resource-section {
        padding: 60px 24px;
    }

    .featured-resource-container {
        flex-direction: column;
        gap: 40px;
    }

    .featured-resource-title {
        font-size: 32px;
    }

    .featured-resource-description {
        font-size: 14px;
    }

    .featured-resource-buttons {
        flex-direction: column;
    }

    .featured-resource-button {
        width: 100%;
        justify-content: center;
    }

    .featured-resource-image-wrapper {
        min-width: auto;
        width: 100%;
    }

    .featured-resource-image-placeholder {
        width: 100%;
        height: 250px;
        font-size: 48px;
    }

    .featured-resource-badge {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}

/* Responsive: Latest Blog */
@media (max-width: 768px) {
    .latest-blog-section {
        padding: 60px 24px;
    }

    .latest-blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .latest-blog-heading {
        font-size: 36px;
    }

    .latest-blog-description {
        font-size: 14px;
    }

    .latest-blog-view-all {
        font-size: 12px;
        padding-top: 12px;
        margin-top: 12px;
    }

    .latest-blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-excerpt {
        font-size: 13px;
    }
}

/* Responsive: Community Split */
@media (max-width: 768px) {
    .community-split-section {
        flex-direction: column;
    }
    
    .community-split-content {
        padding: 40px 24px;
    }
    
    .community-split-heading {
        font-size: 36px;
    }
    
    .community-split-description {
        font-size: 16px;
    }
    
    .community-split-image {
        min-height: 300px;
    }
}

/* Responsive: Book Promo */
@media (max-width: 768px) {
    .book-promo-section {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-top: 0;
    }
    
    .book-promo-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .book-promo-cover {
        flex: 0 0 auto;
    }
    
    .book-cover-3d {
        width: 250px;
        height: 375px;
    }
    
    .book-promo-heading {
        font-size: 36px;
    }
    
    .book-promo-description {
        font-size: 16px;
    }
}

/* Responsive: Downloads */
@media (max-width: 1024px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 60px 24px;
    }

    .downloads-heading {
        font-size: 32px;
    }

    .downloads-description {
        font-size: 14px;
    }

    .downloads-filters {
        margin-bottom: 24px;
    }

    .filter-button {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .browse-all-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

/* Block: Split Content Section */
.split-content-section {
    display: flex;
    flex-direction: row;
}

.split-content-left {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.split-content-tagline {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: block;
}

.split-content-heading {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}

.split-content-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.split-content-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.split-content-btn-primary,
.split-content-btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.split-content-btn-primary {
    background: #c46028;
    color: white;
    border: 2px solid transparent;
}

.split-content-btn-primary:hover {
    background: #a04e1f;
}

.split-content-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.split-content-btn-secondary:hover {
    background: white;
    color: #65b59b;
}

/* Dynamic button colors based on background */
.split-content-btn-primary[data-bg-color="#f3f1dd"] {
    background: #c46028;
    color: white;
}

.split-content-btn-secondary[data-bg-color="#f3f1dd"] {
    color: #c46028;
    border-color: #c46028;
}

.split-content-btn-secondary[data-bg-color="#f3f1dd"]:hover {
    background: #c46028;
    color: white;
}

.split-content-btn-primary[data-bg-color="#c46028"] {
    background: #f4f1dd;
    color: #c46028;
}

.split-content-btn-primary[data-bg-color="#c46028"]:hover {
    background: white;
    color: #c46028;
}

.split-content-btn-secondary[data-bg-color="#c46028"] {
    color: white;
    border-color: white;
}

.split-content-btn-secondary[data-bg-color="#c46028"]:hover {
    background: white;
    color: #c46028;
}

.split-content-right {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive: Split Content */
@media (max-width: 768px) {
    .split-content-section {
        flex-direction: column;
    }
    
    .split-content-left {
        padding: 40px 24px;
    }
    
    .split-content-heading {
        font-size: 36px;
    }
    
    .split-content-description {
        font-size: 16px;
    }
    
    .split-content-right {
        min-height: 300px;
    }
}

/* Block: Navbar With Page Title */
.navbar-title-block {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.navbar-title-block nav {
    max-width: none !important;
}

.navbar-title-nav {
    display: block;
    background: white;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
}

.navbar-title-nav-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
}

.navbar-title-logo {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100px;
    height: 100px;
}

.navbar-title-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.navbar-title-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.navbar-title-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.navbar-title-link:hover {
    color: #65b59b;
    border-bottom-color: #65b59b;
}

.navbar-title-link.active {
    color: #65b59b;
    border-bottom-color: #65b59b;
}

/* Hamburger */
.navbar-title-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.navbar-title-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar-title-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-title-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-title-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Page title banner */
.navbar-title-banner {
    padding: 24px 32px;
    text-align: center;
    width: 100%;
}

.navbar-title-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Responsive: Navbar With Page Title */
@media (max-width: 768px) {
    .navbar-title-nav-inner {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .navbar-title-logo {
        width: 65px;
        height: 65px;
    }

    .navbar-title-logo img {
        width: 65px;
        height: 65px;
    }

    .navbar-title-hamburger {
        display: flex;
        margin-left: auto;
    }

    .navbar-title-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        order: 3;
        border-top: 1px solid #eee;
        margin-top: 10px;
        padding-top: 10px;
    }

    .navbar-title-links.is-open {
        display: flex;
    }

    .navbar-title-link {
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }

    .navbar-title-link.active {
        color: #65b59b;
        border-bottom: 3px solid #65b59b;
    }

    .navbar-title-link:last-child {
        border-bottom: none;
    }

    .navbar-title-banner {
        padding: 20px 20px;
    }

    .navbar-title-heading {
        font-size: 24px;
    }
}

/* Block: Navigation Menu */
.dsd-menu-block {
    padding: 15px 20px;
    position: sticky;
    top: 8px;
    z-index: 9999;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

.dsd-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo styling in menu block */
.dsd-menu-block .logonav {
    max-width: 60px;
    opacity: 1;
    overflow: hidden;
    transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
}

.dsd-menu-block .logonav img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.dsd-menu-block.show-logo .logonav {
    max-width: 60px;
    opacity: 1;
}

.dsd-menu-item {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.15em;
    padding: 5px 10px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
}

.dsd-menu-item:hover {
    border-bottom-color: currentColor;
}

.dsd-menu-item.active {
    border-bottom-color: currentColor;
}

/* Dynamic text color for menu based on background */
.dsd-menu-block[style*="#f3f1dd"] .dsd-menu-item {
    color: #c46028;
}

@media (min-width: 1100px) {
    .dsd-menu-block {
        top: 20px;
        border-top: 4px solid white;
        border-bottom: 4px solid white;
    }
    
    .dsd-menu-block .logonav {
        max-width: 100px;
    }
    
    .dsd-menu-block .logonav img {
        width: 100px;
        height: 100px;
    }

    .dsd-menu-block.show-logo .logonav {
        max-width: 100px;
    }
    
    .dsd-menu-item {
        transform: scaleX(1.2);
        padding: 8px 16px;
    }
}

/* Responsive: Hero Slider */
@media (max-width: 768px) {
    .hero-slide-image {
        height: auto;
        max-height: 250px;
        margin-left: 0;
    }
    
    .hero-slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Two-column slide mobile */
    .hero-slide-two-column {
        flex-direction: column;
        height: auto;
        max-height: none;
    }
    
    .hero-slide-image-column {
        flex: 0 0 auto;
        height: auto;
        width: 100%;
        padding: 30px;
        justify-content: center !important;
    }
    
    .hero-slide-column-image {
        max-height: 280px;
    }
    
    .hero-slide-content-column {
        flex: 0 0 auto;
        padding: 30px 24px 40px;
        width: 100%;
    }
    
    .hero-slide-heading {
        font-size: 32px;
    }
    
    .hero-slide-subheading {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-slide-paragraph {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-slide-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-slide-cta {
        justify-content: center;
        width: 100%;
        padding: 12px 24px;
    }
}

/* Utility: disable all click/pointer interaction on an element */
.no-click {
    pointer-events: none;
}

/* =========================================
   Podcast Info Block
   ========================================= */

/*
 * Layout concept:
 *   - Album art floats LEFT as a big square, slightly overlapping, with
 *     a dramatic shadow → gives the vinyl-record / Spotify feel.
 *   - Right side is a stacked column: tagline, title, description on top,
 *     player embed below — taking the full remaining width.
 *   - On dark backgrounds, everything flips to white text automatically.
 */

.podcast-info-section {
    padding: 80px 40px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.podcast-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;                       /* art bleeds into body via negative margin */
    position: relative;
}

/* ---- floating album art ---- */
.podcast-art-float {
    flex: 0 0 320px;
    width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.30),
        0 4px 12px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
    margin-right: -40px;          /* overlap into the body area */
    background: rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.podcast-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-art-empty {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: inherit;
    opacity: 0.35;
}

/* ---- body: header + player ---- */
.podcast-body {
    flex: 1;
    min-width: 0;
    background: rgba(0,0,0,0.06);
    border-radius: 0 20px 20px 0;
    padding: 48px 48px 48px 72px; /* extra left padding to clear the overlapping art */
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* dark bg override */
.podcast-info-section[data-bg="#65b59b"] .podcast-body,
.podcast-info-section[data-bg="#c46028"] .podcast-body {
    background: rgba(0,0,0,0.10);
}

/* tagline (small caps label) */
.podcast-tagline {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #c46028;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
}

.podcast-info-section[data-bg="#65b59b"] .podcast-tagline,
.podcast-info-section[data-bg="#c46028"] .podcast-tagline {
    color: rgba(255,255,255,0.7);
}

/* title */
.podcast-info-section .podcast-title {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #65b59b;
}

.podcast-info-section[data-bg="#65b59b"] .podcast-title,
.podcast-info-section[data-bg="#c46028"] .podcast-title {
    color: white;
}

/* description */
.podcast-desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    max-width: 620px;
    color: #333;
    opacity: 0.85;
}

.podcast-info-section[data-bg="#65b59b"] .podcast-desc,
.podcast-info-section[data-bg="#c46028"] .podcast-desc {
    color: white;
}

/* player area */
.podcast-player-area {
    width: 100%;
}

.podcast-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.podcast-embed iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border: none;
}

.podcast-empty-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    border: 2px dashed rgba(0,0,0,0.15);
    border-radius: 12px;
    color: #333;
    opacity: 0.55;
    font-size: 0.9rem;
    gap: 8px;
}

.podcast-empty-player i {
    font-size: 36px;
    margin-bottom: 4px;
}

.podcast-info-section[data-bg="#65b59b"] .podcast-empty-player,
.podcast-info-section[data-bg="#c46028"] .podcast-empty-player {
    border-color: rgba(255,255,255,0.25);
    color: white;
}

/* ---- responsive ---- */

/* Tablet: shrink the art, remove overlap */
@media (max-width: 960px) {
    .podcast-info-section {
        padding: 60px 24px;
    }

    .podcast-info-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .podcast-art-float {
        flex: unset;
        width: 200px;
        margin: 0 auto -60px;     /* overlap downward into body */
        z-index: 3;
        border-radius: 16px;
    }

    .podcast-body {
        border-radius: 20px;
        padding: 80px 32px 40px;  /* offset for art overlapping from top */
        text-align: center;
        align-items: center;
    }

    .podcast-info-section .podcast-title {
        font-size: 32px;
    }

    .podcast-desc {
        max-width: 480px;
    }

    .podcast-tagline {
        justify-content: center;
    }
}

/* Phone: smaller art */
@media (max-width: 480px) {
    .podcast-art-float {
        width: 160px;
        margin-bottom: -48px;
    }

    .podcast-body {
        padding: 68px 20px 32px;
    }

    .podcast-info-section .podcast-title {
        font-size: 26px;
    }
}