/* Font Face Declarations */
@font-face {
    font-family: 'Apfel Grotezk';
    src: url('../fonts/ApfelGrotezk-Regular.woff2') format('woff2'),
         url('../fonts/ApfelGrotezk-Regular.woff') format('woff'),
         url('../fonts/ApfelGrotezk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apfel Grotezk';
    src: url('../fonts/ApfelGrotezk-Mittel.woff2') format('woff2'),
         url('../fonts/ApfelGrotezk-Mittel.woff') format('woff'),
         url('../fonts/ApfelGrotezk-Mittel.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apfel Grotezk';
    src: url('../fonts/ApfelGrotezk-Fett.woff2') format('woff2'),
         url('../fonts/ApfelGrotezk-Fett.woff') format('woff'),
         url('../fonts/ApfelGrotezk-Fett.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue Mono';
    src: url('../fonts/fonnts.com-Maison_Neue_Mono.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/fonnts.com-Maison_Neue_Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/fonnts.com-Maison_Neue_Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/fonnts.com-Maison_Neue_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --color-black: #151515;
    --color-dark-gray: #555555;
    --color-gray: #D9D9D9;
    --color-light-gray: #F6F5F4;
    --color-green-100: #d6efd4;
    --color-green-500: #66bb6d;
    --color-green-700: #4d8d53;
    --color-gold: #f4b953;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-family-apfel: 'Apfel Grotezk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-maison: 'Maison Neue Mono', 'Maison Neue', 'Inter', monospace;
    --font-family: var(--font-family-apfel);
    --font-family-mono: var(--font-family-maison);
    
    /* Spacing */
    --spacing-section: 60px;
    --spacing-section-divider: 40px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.7;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Reset link styles - will be overridden for specific content areas */
a {
    color: inherit;
    text-decoration: none;
}

/* Utility Classes */
.container {
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
}

.container-wide {
    width: calc(100% - 80px);
    margin: 0 var(--spacing-section-divider);
}

.center-absolute {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Typography System */
.nav-logo {
    background-color: var(--color-green-100);
    height: 60px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    height: 13px;
    width: auto;
    display: block;
}

/* H0 - Apfel Grotezk, Fett, 48px, 110% line height, -1% tracking */
h1, .h0 {
    font-family: var(--font-family-apfel);
    font-weight: 700; /* Fett */
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.48px; /* -1% of 48px */
    color: var(--color-black);
}

/* H1 - Apfel Grotezk, Mittel, 36px, 140% line height, -1% tracking */
h2, .h1 {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 36px;
    line-height: 140%;
    letter-spacing: -0.36px; /* -1% of 36px */
    color: var(--color-black);
}

.heading-1-light {
    font-family: var(--font-family-apfel);
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: var(--color-black);
}

/* H2 - Apfel Grotezk, Regular, 16px, 120% line height, -1% tracking */
.h2 {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.16px; /* -1% of 16px */
    color: var(--color-black);
}

/* H3 - Apfel Grotezk, Mittel, 24px, 140% line height, -1% tracking */
h3, .h3, .heading-2 {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.24px; /* -1% of 24px */
    color: var(--color-black);
}

/* Description - Apfel Grotezk, Regular, 20px, 140% line height, -1% tracking */
.description {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.2px; /* -1% of 20px */
    color: var(--color-black);
}

h4, .heading-3 {
    font-family: var(--font-family-apfel);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: var(--color-black);
}

/* Body - Apfel Grotezk, Regular, 16px, 110% line height, 2% tracking */
p, .body {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0.32px; /* 2% of 16px */
    color: var(--color-black);
}

/* Section - Apfel Grotezk, Fett, 16px, 100% line height, 0% tracking */
.section-divider p {
    font-family: var(--font-family-apfel);
    font-weight: 700; /* Fett */
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em; /* 10% */
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
}

/* Small - Apfel Grotezk, Regular, 12px, 140% line height, -1% tracking */
.small {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.12px; /* -1% of 12px */
    color: var(--color-black);
}

/* Alert - Maison Neue, Mono, 16px, 140% line height, 0% tracking */
.alert {
    font-family: var(--font-family-maison);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px; /* 0% tracking */
    color: var(--color-black);
}

/* Numbers - Maison Neue, Mono, 16px, 140% line height, 0% tracking */
.numbers {
    font-family: var(--font-family-maison);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0px; /* 0% tracking */
    color: var(--color-black);
}

/* LABEL - Maison Neue, Mono, 12px, 140% line height, -1% tracking */
.meta-data, .author-name, .workshop-date, .insight-meta p {
    font-family: var(--font-family-maison) !important;
    font-size: 12px !important;
    line-height: 140% !important;
    letter-spacing: -0.12px !important; /* -1% of 12px */
    text-transform: uppercase !important;
    color: var(--color-dark-gray) !important;
    font-weight: 400 !important;
}

.caption {
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: -0.12px;
    color: var(--color-dark-gray);
}

/* Dropdown - Apfel Grotezk, Regular, 48px, 100% line height, 0px tracking */
.dropdown, .insights-title {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px; /* 0px tracking */
    color: var(--color-black);
}

/* Navigation */
.nav-default {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 50px;
    width: 100%;
    overflow: hidden;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
}

/* NAVIGATION - Maison Neue, Mono, 12px, 160% line height, -1% tracking */
.nav-item {
    background-color: var(--color-green-500);
    border-left: 1px solid var(--color-white);
    height: 50px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-family-maison);
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: -0.12px; /* -1% of 12px */
    text-transform: uppercase;
    color: var(--color-black);
    padding: 0;
    text-align: center;
}

.nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.nav-item:hover {
    background-color: var(--color-green-700);
}

.nav-item:last-child {
    border-right: 1px solid var(--color-white);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-white);
    width: 100%;
    min-height: calc(100vh - 50px - 78px);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: auto;
    height: auto;
    display: block;
}

.hero-text {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    letter-spacing: -0.24px;
    color: var(--color-black);
}

.hero-text h3 {
    font-weight: 400; /* Regular */
}

.hero-text p {
    margin: 0;
}

.signup-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.signup-form {
    width: 500px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-form .signup-message {
    margin: 0;
    font-family: var(--font-family-apfel);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-dark-gray);
}

.signup-form .signup-message[data-type="error"] {
    color: #b42318;
}

.signup-form .signup-message[data-type="success"] {
    color: #067647;
}

.signup-label {
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 140%;
    text-transform: uppercase;
    letter-spacing: -0.12px;
    color: var(--color-black);
    width: 100%;
}

.email-input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.email-input {
    border: 1px solid var(--color-gray);
    height: 40px;
    padding: 10px 20px;
    flex: 1;
    font-family: var(--font-family-apfel);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-black);
    letter-spacing: 0.32px; /* 2% tracking for body */
    background-color: var(--color-white);
    outline: none;
}

.email-input:focus {
    border-color: var(--color-green-500);
}

.email-input::placeholder {
    color: var(--color-gray);
}

.email-submit-btn {
    background-color: var(--color-green-500);
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.email-submit-btn:hover {
    background-color: var(--color-green-700);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    color: var(--color-black);
}

.social-proof {
    display: flex;
    gap: 8px;
    align-items: center;
}

.avatar-group {
    display: flex;
    align-items: center;
    padding-right: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: var(--color-gold);
    border: 1px solid var(--color-white);
    margin-left: -16px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(1) {
    background-image: url('../images/trusted-1.png');
}

.avatar:nth-child(2) {
    background-image: url('../images/trusted-2.png');
}

.avatar:nth-child(3) {
    background-image: url('../images/trusted-3.png');
}

.avatar:nth-child(4) {
    background-image: url('../images/trusted-4.png');
}

.avatar:nth-child(5) {
    background-image: url('../images/trusted-5.png');
}

.trust-text {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 140%; /* Description style */
    text-align: center;
    letter-spacing: -0.2px; /* -1% of 20px */
    color: var(--color-black);
    margin: 0;
}

/* Section Dividers */
.section-divider {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    width: calc(100% - 80px);
    margin: 0 var(--spacing-section-divider);
    border-top: 1px solid var(--color-dark-gray);
}

/* Featured Section */
.featured-section {
    background-color: var(--color-white);
    height: 600px;
    width: 100%;
    position: relative;
}

.featured-container {
    width: calc(100% - 120px);
    position: relative;
    padding: 40px 0;
    height: 600px;
    display: flex;
    align-items: center;
    margin: 0 var(--spacing-section);
}

.featured-main {
    width: 50%;
    max-height: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.featured-main h2 {
    width: 100%;
    margin-bottom: 0;
    /* Using H1 style - Apfel Grotezk, Mittel, 36px, 140% line height, -1% tracking */
}

.featured-main h2 a {
    color: inherit;
    text-decoration: none;
}

.featured-main h2 a:hover {
    color: var(--color-dark-gray);
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 36px;
    line-height: 140%;
    letter-spacing: -0.36px; /* -1% of 36px */
}

.featured-description {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 20px;
    line-height: 140%; /* Description style */
    letter-spacing: -0.2px; /* -1% of 20px */
    color: var(--color-dark-gray);
    width: 100%;
    margin: 0;
}

.featured-sidebar {
    width: 50%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-dark-gray);
}

.featured-item {
    border-bottom: 1px solid var(--color-dark-gray);
    height: 198px;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: flex-start;
}

.featured-item:last-child {
    border-bottom: none;
}

.featured-item h3 {
    width: 100%;
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.24px; /* -1% of 24px - featured sidebar uses H3 size */
}

.featured-item h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-item h3 a:hover {
    color: var(--color-dark-gray);
}

.article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: var(--color-green-500);
    background-image: url('https://www.figma.com/api/mcp/asset/dd8042dc-694d-4abb-b478-cb94dc26ec5a');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-name {
    margin: 0;
}

/* LABEL - Maison Neue, Mono, 12px, 140% line height, -1% tracking */
.tag {
    padding: 4px 10px;
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.12px; /* -1% of 12px */
    text-transform: uppercase;
    color: var(--color-black);
    background-color: var(--color-gold);
    white-space: nowrap;
    display: inline-block;
}

/* Resources Section */
.resources-section {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.resources-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
}

.resource-card {
    background-color: var(--color-white);
    border-right: 1px solid var(--color-dark-gray);
    height: 600px;
    width: 33.333%;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 58px 50px 40px;
}

.resource-card:last-child {
    border-right: none;
}

.resource-card h3 {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 36px;
    line-height: 140%;
    letter-spacing: -0.36px; /* -1% of 36px */
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.resource-image {
    max-width: 100%;
    max-height: 240px;
    width: auto;
    height: auto;
    margin: 20px 0;
    object-fit: contain;
    display: block;
}

.resource-card .btn-primary {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Workshops Section */
.workshops-section {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.workshops-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
}

.workshop-card {
    background-color: var(--color-white);
    border-right: 1px solid var(--color-dark-gray);
    min-height: 600px;
    height: auto;
    width: 33.333%;
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 58px 49px 80px;
}

.workshop-card:last-child {
    border-right: none;
}

.workshop-card h3 {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 36px;
    line-height: 140%;
    letter-spacing: -0.36px; /* -1% of 36px */
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}


.workshop-avatars {
    display: flex;
    align-items: center;
    padding-right: 17px;
}

.workshop-avatar {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    border-radius: 50%;
    background-color: var(--color-green-500);
    border: 1.021px solid var(--color-dark-gray);
    margin-left: -17px;
    background-image: url('https://www.figma.com/api/mcp/asset/dd8042dc-694d-4abb-b478-cb94dc26ec5a');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.workshop-avatar:first-child {
    margin-left: 0;
}

.workshop-author {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 20px;
    line-height: 140%; /* Description style */
    text-align: center;
    letter-spacing: -0.2px; /* -1% of 20px */
    color: var(--color-black);
    width: 100%;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.workshop-date {
    width: 100%;
    margin: 0;
    text-align: center;
    line-height: 1.2 !important; /* Tighter spacing between date lines (br) */
}

/* Collapse double line breaks: only one br between date and time */
.workshop-date br + br {
    display: none;
}

.workshop-card .btn-primary {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: auto;
    z-index: 2; /* Above workshop-content so it stays clickable if overlap occurs */
}

.workshop-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    flex: 1;
    min-height: 0;
    padding-bottom: 56px; /* Reserve space so content doesn't overlap the Register button */
}

/* Buttons */
/* Button - Apfel Grotezk, Mono, 16px, 120% line height, 0% tracking */
.btn-primary {
    background-color: var(--color-green-500);
    height: 40px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Mono variant - using Regular weight */
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px; /* 0% tracking */
    color: var(--color-black);
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-green-700);
}

.btn-load-more {
    border: 1px solid var(--color-gray);
    height: 40px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    cursor: pointer;
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Mono variant - using Regular weight */
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px; /* 0% tracking */
    color: var(--color-black);
    margin: 40px auto;
    transition: border-color 0.2s, background-color 0.2s;
}

.btn-load-more:hover {
    border-color: var(--color-green-500);
    background-color: var(--color-light-gray);
}

.load-more-container {
    display: flex;
    justify-content: center;
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
}

/* Insights Section */
.insights-section {
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.insights-controls {
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
    display: flex;
    flex-wrap: wrap;
    /* Bottom-align so filter BUTTONS sit level with the search bar (label sits above). */
    align-items: flex-end;
    justify-content: center;
    padding: 33px 0;
    gap: 50px;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.filter-label {
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-gold);
    height: 28px;
    /* Match mobile: auto width + tighter padding */
    padding: 6px 16px;
    display: flex;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: var(--color-black);
    width: auto;
}

.filter-btn:hover {
    background-color: var(--color-green-700);
}

.search-box {
    background-color: var(--color-light-gray);
    height: 40px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    border-radius: 100px;
    width: 400px;
    min-width: 250px;
    align-items: flex-end;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--color-black);
    flex-shrink: 0;
}

.search-input {
    border: none;
    background: transparent;
    font-family: var(--font-family-maison);
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.12px; /* -1% of 12px */
    text-transform: uppercase;
    color: var(--color-black);
    outline: none;
}

.search-input::placeholder {
    color: var(--color-black);
}

.insights-list {
    width: calc(100% - 120px);
    margin: 0 var(--spacing-section);
    display: flex;
    flex-direction: column;
}

.insight-item {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-dark-gray);
    min-height: 128px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 56px;
    position: relative;
}

.insight-item:first-child {
    border-top: none;
}

.insight-item .tag {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
    flex-shrink: 0;
}

.insight-item h4 {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.insight-right {
    display: flex;
    align-items: center;
    gap: 12px; /* requested "gap" + matches mobile spacing intent */
    margin-left: auto;
    flex-shrink: 0;
    min-width: 0;
}

.insight-item h4 a {
    color: inherit;
    text-decoration: none;
}

.insight-item h4 a:hover {
    color: var(--color-dark-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.insight-meta {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.clock-icon {
    width: 16px;
    height: 16px;
    color: var(--color-dark-gray);
    flex-shrink: 0;
}

.insight-meta p {
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-green-100);
    min-height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.newsletter-content {
    position: relative;
    width: 100%;
    max-width: 454px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 20px;
    z-index: 1;
}

.newsletter-title {
    font-family: var(--font-family-apfel);
    font-weight: 500; /* Mittel */
    font-size: 24px;
    line-height: 140%; /* H3 style */
    letter-spacing: -0.24px; /* -1% of 24px */
    color: var(--color-black);
    width: 100%;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 454px;
}

.newsletter-message {
    margin: 8px 0 0;
    font-family: var(--font-family-apfel);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-dark-gray);
    width: 100%;
}

.newsletter-message[data-type="error"] {
    color: #b42318;
}

.newsletter-message[data-type="success"] {
    color: #067647;
}

.newsletter-input {
    background-color: var(--color-white);
    height: 48px;
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 16px; /* Body style */
    line-height: 110%;
    letter-spacing: 0.32px; /* 2% of 16px */
    color: var(--color-dark-gray);
    flex: 1;
    min-width: 0;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--color-green-500);
}

.newsletter-input::placeholder {
    color: var(--color-dark-gray);
}

.newsletter-submit-btn {
    background-color: var(--color-black);
    width: 48px;
    height: 48px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.newsletter-submit-btn .arrow-icon {
    color: var(--color-white);
}

.newsletter-submit-btn:hover {
    background-color: var(--color-dark-gray);
}

.newsletter-background-image {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto;
    margin-top: auto;
}

/* Footer */
.footer {
    background-color: var(--color-light-gray);
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 81px;
    padding-bottom: 40px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 var(--spacing-section) 40px;
    width: calc(100% - 120px);
    gap: 60px;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 110%; /* Body style */
    letter-spacing: 0.32px; /* 2% of 16px */
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--color-green-500);
}

.footer-social {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-left: auto;
}

.social-icon {
    display: block;
}

.social-icon img {
    width: 20px;
    height: auto;
    display: block;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.footer-logo-img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 85px;
    object-fit: contain;
    display: block;
}

.footer-disclaimer {
    width: calc(100% - 120px);
    margin: 40px var(--spacing-section) 0;
    font-family: var(--font-family-apfel);
    font-weight: 400; /* Regular */
    font-size: 12px;
    line-height: 140%; /* Small style */
    letter-spacing: -0.12px; /* -1% of 12px */
    color: var(--color-black);
    padding: 20px 0;
    text-align: left;
}

.footer-disclaimer a {
    color: var(--color-black);
    text-decoration: underline;
}

/* Responsive Breakpoints for Desktop - Medium Screens */
@media (max-width: 1400px) {
    .workshop-card {
        min-width: 280px;
        padding: 40px 30px 46px;
    }
    
    .workshop-avatar {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        max-width: 150px !important;
        max-height: 150px !important;
        border-radius: 50%;
        margin-left: -12px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
    
    .workshop-avatars {
        padding-right: 12px;
    }
    
    .insight-item {
        padding: 20px 40px;
    }
    
    .insight-item .tag {
        font-size: 12px; /* LABEL style */
        padding: 4px 8px;
    }
    
    .insight-item h4 {
        font-size: 18px;
        padding-right: 10px;
    }
}

@media (max-width: 1200px) {
    .workshop-card {
        min-width: 250px;
        padding: 35px 25px 46px;
    }
    
    .workshop-avatar {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        max-width: 120px !important;
        max-height: 120px !important;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
    
    .workshop-author {
        font-size: 18px;
    }
    
    .workshop-date {
        font-size: 12px; /* LABEL style */
    }
    
    .insight-item {
        padding: 20px 30px;
    }
    
    .insight-item .tag {
        width: auto;
    }
    
    .insight-meta p {
        font-size: 12px; /* LABEL style */
    }
    
    .insight-item h4 {
        font-size: 16px;
    }
    
}

@media (max-width: 1000px) {
    .workshop-card {
        min-width: 220px;
        padding: 30px 20px 46px;
    }
    
    .workshop-avatar {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
    
    .workshop-author {
        font-size: 16px;
    }
    
    .workshop-date {
        font-size: 12px; /* LABEL style */
    }
    
    .insight-item {
        flex-wrap: wrap;
        padding: 20px 25px;
        gap: 12px;
    }
    
    .insight-item h4 {
        width: 100%;
        flex: 1 1 100%;
        margin-bottom: 8px;
    }
    
    .insight-right {
        width: 100%;
        flex: 1 1 100%;
        margin-left: 0;
        justify-content: space-between;
        gap: 12px;
    }
}

/* Mobile/Desktop Visibility Classes */
/* Desktop-only elements keep their natural display properties (flex, grid, block, etc.) */
/* No CSS needed for .desktop-only - elements use their original display properties */

.mobile-only {
    display: none;
}

.mobile-only[hidden] {
    display: none !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-only[hidden] {
        display: block !important;
    }

    /* Mobile Navigation */
    .nav-default.mobile-only {
        height: auto;
        padding: 0;
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .nav-container-mobile {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .nav-menu-button-mobile {
        width: 40px;
        height: 40px;
        background-color: var(--color-green-500);
        border: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        transition: background-color 0.2s;
    }

    .nav-menu-button-mobile:hover {
        background-color: var(--color-green-700);
    }

    .nav-menu-button-mobile .plus-icon {
        width: 20px;
        height: 20px;
        color: var(--color-black);
    }

    /* Navigation Overlay - Mobile Only */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-green-500);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-overlay-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .nav-overlay-right-edge {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 100%;
        background-color: var(--color-green-500);
        border-left: 1px solid var(--color-white);
        z-index: 1;
    }

    .nav-overlay-close {
        position: absolute;
        top: 20px;
        right: 25px;
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        padding: 0;
        transform: translateX(50%);
    }

    .nav-overlay-close svg {
        width: 100%;
        height: 100%;
        stroke: var(--color-black);
        stroke-width: 2;
    }

    .nav-overlay-watermark {
        display: none;
    }

    .nav-overlay-menu {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        position: relative;
        z-index: 1;
        padding: 0;
        width: calc(100% - 50px);
        height: 100%;
    }

    .nav-overlay-item {
        border-bottom: 1px solid var(--color-white);
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        min-height: 0;
    }

    .nav-overlay-item:first-child {
        border-top: none;
    }

    .nav-overlay-item-active {
        background-color: var(--color-green-100);
    }

    .nav-overlay-link-logo {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .nav-overlay-logo {
        height: auto;
        width: auto;
        max-height: 24px;
        display: block;
    }


    /* NAVIGATION - Maison Neue, Mono, 12px, 160% line height, -1% tracking */
    .nav-overlay-link {
        font-family: var(--font-family-maison);
        font-weight: 400;
        font-size: 12px;
        line-height: 160%;
        letter-spacing: -0.12px; /* -1% of 12px */
        text-transform: uppercase;
        color: var(--color-black);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        transition: opacity 0.2s;
    }

    .nav-overlay-link:hover {
        opacity: 0.7;
    }

    .nav-overlay-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 60px 0 40px 0;
        position: relative;
        z-index: 1;
        margin-top: auto;
        width: calc(100% - 50px);
    }

    .nav-overlay-social-icon {
        display: block;
        width: 24px;
        height: 24px;
    }

    .nav-overlay-social-icon img {
        width: 100%;
        height: 100%;
        display: block;
        filter: brightness(0);
    }

    /* Mobile Hero Section */
    .hero-section-mobile {
        background-color: var(--color-white);
        width: 100%;
        height: calc(100vh - 40px);
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }

    .hero-section-mobile {
        background-color: var(--color-white);
        width: 100%;
        min-height: calc(100vh - 40px);
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .hero-content-mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        overflow: hidden;
    }

    .logo-container-mobile {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .logo-mobile {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 200px;
        display: block;
    }

    .hero-text-mobile {
        font-family: var(--font-family-apfel);
        font-weight: 500; /* Mittel */
        font-size: 24px;
        line-height: 140%;
        text-align: center;
        letter-spacing: -0.24px;
        color: var(--color-black);
    }

    .hero-text-mobile h3 {
        margin: 0;
        font-weight: 400; /* Regular */
    }

    .signup-section-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .signup-form-mobile {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .signup-form-mobile .signup-message {
        margin: 0;
        font-family: var(--font-family-apfel);
        font-weight: 400;
        font-size: 14px;
        line-height: 1.2;
        color: var(--color-dark-gray);
    }

    .signup-form-mobile .signup-message[data-type="error"] {
        color: #b42318;
    }

    .signup-form-mobile .signup-message[data-type="success"] {
        color: #067647;
    }

    .signup-label-mobile {
        font-family: var(--font-family-maison);
        font-size: 12px;
        line-height: 140%;
        text-transform: uppercase;
        letter-spacing: -0.12px;
        color: var(--color-black);
        width: 100%;
        margin: 0;
    }

    .email-input-group-mobile {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .email-input-mobile {
        border: 1px solid var(--color-gray);
        height: 40px;
        padding: 10px 20px;
        flex: 1;
        font-family: var(--font-family-apfel);
        font-weight: 400;
        font-size: 16px;
        color: var(--color-black);
        letter-spacing: 0.32px;
        background-color: var(--color-white);
        outline: none;
    }

    .email-input-mobile:focus {
        border-color: var(--color-green-500);
    }

    .email-input-mobile::placeholder {
        color: var(--color-gray);
    }

    .email-submit-btn-mobile {
        background-color: var(--color-green-500);
        width: 40px;
        height: 40px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .email-submit-btn-mobile:hover {
        background-color: var(--color-green-700);
    }

    .arrow-icon-mobile {
        width: 16px;
        height: 16px;
        color: var(--color-black);
    }

    .social-proof-mobile {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .avatar-group-mobile {
        display: flex;
        align-items: center;
        padding-right: 16px;
    }

    .avatar-mobile {
        width: 40px;
        height: 40px;
        border-radius: 100px;
        background-color: var(--color-gold);
        border: 1px solid var(--color-white);
        margin-left: -16px;
        position: relative;
        background-size: cover;
        background-position: center;
    }

    .avatar-mobile:first-child {
        margin-left: 0;
    }

    .avatar-mobile:nth-child(1) {
        background-image: url('../images/trusted-1.png');
    }

    .avatar-mobile:nth-child(2) {
        background-image: url('../images/trusted-2.png');
    }

    .avatar-mobile:nth-child(3) {
        background-image: url('../images/trusted-3.png');
    }

    .avatar-mobile:nth-child(4) {
        background-image: url('../images/trusted-4.png');
    }

    .avatar-mobile:nth-child(5) {
        background-image: url('../images/trusted-5.png');
    }

    .trust-text-mobile {
        font-family: var(--font-family-apfel);
        font-weight: 400; /* Regular */
        font-size: 18px;
        line-height: 140%;
        text-align: center;
        letter-spacing: -0.2px;
        color: var(--color-black);
        margin: 0;
    }

    /* Mobile Section Dividers */
    .section-divider-mobile.mobile-only {
        height: 60px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0;
        width: 100%;
        margin: 0;
        border-top: 1px solid var(--color-dark-gray);
        border-left: none;
        border-right: none;
        position: relative;
    }

    /* Section - Apfel Grotezk, Fett, 16px, 100% line height, 10% letter spacing */
    .section-divider-mobile p {
        font-family: var(--font-family-apfel);
        font-weight: 700; /* Fett */
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.1em; /* 10% */
        text-transform: uppercase;
        color: var(--color-black);
        margin: 0;
        text-align: center;
    }

    /* Mobile Featured Section */
    .featured-section-mobile {
        width: 100%;
        padding: 10px 0;
        margin-bottom: 50px;
    }

    .featured-list-mobile {
        width: calc(100% - 40px);
        margin: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .featured-item-mobile {
        padding: 20px 0;
        border-bottom: 1px solid var(--color-dark-gray);
    }

    .featured-item-mobile:last-child {
        border-bottom: none;
    }

    .featured-item-mobile h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .featured-item-mobile h3 a {
        color: inherit;
        text-decoration: none;
    }

    .featured-item-mobile h3 a:hover {
        color: var(--color-dark-gray);
    }

    .article-meta-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .article-meta-mobile .author-name {
        margin: 0;
        font-size: 12px;
    }

    .article-meta-mobile .tag {
        margin: 0;
    }

    /* Mobile Resources Section */
    .resources-section-mobile {
        width: 100%;
        padding: 10px 0;
        margin-bottom: 50px;
    }

    .resources-list-mobile {
        width: calc(100% - 40px);
        margin: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .resource-item-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-dark-gray);
    }

    .resource-item-mobile:last-child {
        border-bottom: none;
    }

    .resource-icon-mobile {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .resource-content-mobile {
        flex: 1;
    }

    .resource-content-mobile h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .resource-content-mobile p {
        font-size: 16px; /* Body style */
        line-height: 110%;
        letter-spacing: 0.32px; /* 2% of 16px */
        color: var(--color-dark-gray);
        margin: 0;
    }

    .arrow-right-mobile {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Mobile Workshops Section */
    .workshops-section-mobile {
        width: 100%;
        padding: 10px 0;
        margin-bottom: 50px;
    }

    .workshops-list-mobile {
        width: calc(100% - 40px);
        margin: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .workshop-item-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-dark-gray);
    }

    .workshop-item-mobile:last-child {
        border-bottom: none;
    }

    .workshop-avatar-mobile {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
        border-radius: 50%;
        background-color: var(--color-green-500);
        background-image: url('https://www.figma.com/api/mcp/asset/dd8042dc-694d-4abb-b478-cb94dc26ec5a');
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
        object-fit: cover;
        aspect-ratio: 1 / 1;
        display: block;
    }

    .workshop-info-mobile {
        flex: 1;
    }

    .workshop-info-mobile h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    /* LABEL - Maison Neue, Mono, 12px, 140% line height, -1% tracking */
    .workshop-date-mobile {
        font-family: var(--font-family-maison);
        font-size: 12px;
        line-height: 140%;
        letter-spacing: -0.12px; /* -1% of 12px */
        text-transform: uppercase;
        color: var(--color-dark-gray);
        margin: 0;
    }

    .workshop-date-mobile br + br {
        display: none;
    }

    /* Mobile Insights Section */
    .insights-section-mobile {
        width: 100%;
        padding: 20px 0;
    }

    .insights-controls-mobile {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .filters-mobile {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* LABEL - Maison Neue, Mono, 12px, 140% line height, -1% tracking */
    .filter-label-mobile {
        font-family: var(--font-family-maison);
        font-size: 12px;
        line-height: 140%;
        letter-spacing: -0.12px; /* -1% of 12px */
        text-transform: uppercase;
        color: var(--color-black);
        margin: 0;
    }

    .filter-buttons-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-btn-mobile {
        background-color: var(--color-gold);
        height: 28px;
        padding: 6px 16px;
        border: none;
        font-family: var(--font-family-maison);
        font-size: 12px;
        line-height: 140%;
        letter-spacing: -0.12px; /* -1% of 12px */
        text-transform: uppercase;
        color: var(--color-black);
        cursor: pointer;
    }

    .search-box-mobile {
        background-color: var(--color-light-gray);
        height: 40px;
        padding: 10px 16px;
        display: flex;
        gap: 10px;
        align-items: center;
        border-radius: 100px;
        width: 100%;
    }

    .search-icon-mobile {
        width: 18px;
        height: 18px;
        color: var(--color-black);
        flex-shrink: 0;
    }

    .search-input-mobile {
        border: none;
        background: transparent;
        font-family: var(--font-family-maison);
        font-size: 12px;
        line-height: 140%;
        letter-spacing: -0.12px; /* -1% of 12px */
        text-transform: uppercase;
        color: var(--color-black);
        flex: 1;
        outline: none;
    }

    .search-input-mobile::placeholder {
        color: var(--color-black);
    }

    .insights-list-mobile {
        width: calc(100% - 40px);
        margin: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .insight-item-mobile {
        padding: 20px 0;
        border-bottom: 1px solid var(--color-dark-gray);
    }

    

    .insight-item-mobile h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .insight-item-mobile h4 a {
        color: inherit;
        text-decoration: none;
    }

    .insight-item-mobile h4 a:hover {
        color: var(--color-dark-gray);
    }

    .insight-meta-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .insight-meta-left-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .insight-avatar-mobile {
        width: 32px;
        height: 32px;
        border-radius: 100px;
        background-color: var(--color-green-500);
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
    }

    .insight-meta-mobile p {
        margin: 0;
        font-size: 12px;
    }

    .load-more-mobile {
        width: calc(100% - 40px);
        margin: 40px 20px;
        border: 1px solid var(--color-dark-gray);
        text-align: center;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .load-more-mobile button,
    .btn-load-more-mobile {
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        font-family: var(--font-family-apfel);
        font-weight: 400; /* Regular */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px; /* Body style */
        line-height: 110%;
        letter-spacing: 0.32px; /* 2% of 16px */
        color: var(--color-black);
        margin: 0;
    }

    /* Mobile Footer */
    .footer {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 20px;
        margin: 0 20px 30px;
        width: calc(100% - 40px);
    }

    .footer-links {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: start;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: auto;
        justify-content: flex-end;
    }

    .footer-social {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        margin-left: 0;
        display: flex;
        flex-direction: row;
        gap: 22px;
    }

    .footer-disclaimer {
        width: calc(100% - 40px);
        margin: 20px 20px 0;
        font-size: 12px; /* Small style */
        line-height: 140%;
        letter-spacing: -0.12px; /* -1% of 12px */
        padding: 20px 0;
    }
}
