/*
Theme Name: ThePSIv2
Theme URI: https://psychologicalsafetyinstitute.com
Author: Psychological Safety Institute
Author URI: https://psychologicalsafetyinstitute.com
Description: Lightweight custom WordPress theme for Psychological Safety Institute
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thepsiv2
*/

/* Font Declarations */
@font-face {
    font-family: 'Value Serif Pro';
    src: url('fonts/ValueSerifProMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Value Serif Pro';
    src: url('fonts/ValueSerifProItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --color-primary: #4b6f34;
    --color-secondary: #e8b428;
    --color-secondary-light: #f5d16a;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-border: #e5e5e5;
    --color-bg: #FCF8F5;
    --color-bg-light: #f9f6f2;
    --color-gray-light: #F0EDEA;
    --blue-glare: #2e5266;
    --red: #e8b428;
    --yellow: #f5d16a;

    --container-max: 1200px;
    --container-padding: 1.5rem;
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3rem;
    --gap-xl: 4rem;

    --font-size-base: 1.25rem;
    --font-size-sm: 1.125rem;
    --font-size-lg: 1.375rem;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
        --gap-md: 3rem;
        --gap-lg: 4rem;
        --gap-xl: 6rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 3rem;
        --gap-lg: 5rem;
        --gap-xl: 8rem;
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-weight: 500;
    line-height: var(--line-height-heading);
    margin-bottom: var(--gap-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--gap-md);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: var(--gap-sm);
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* Container System */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: clamp(.25rem, .2232rem + .1339vw, .34375rem) solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 2em;
    background: var(--color-secondary);
    color: var(--color-text);
}

.btn-primary {
    background: var(--color-secondary);
    border-color: transparent;
    color: var(--color-text);
}

.btn-primary:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary);
    opacity: 1;
}

.btn-secondary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary);
    opacity: 1;
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #a8b566 0%, #b5c47a 100%);
    padding: 0.75rem 0;
    text-align: center;
    margin-top: var(--gap-sm);
}

.announcement-text {
    margin: 0;
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text);
}

/* Header */
#site-header {
    padding: var(--gap-sm) 0;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
}

.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    #site-header {
        padding: var(--gap-md) 0;
    }

    .site-logo img {
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .site-logo img {
        height: 60px;
    }
}

/* Navigation */
#site-navigation {
    display: none;
    margin-left: auto;
}

@media (min-width: 1280px) {
    #site-navigation {
        display: block;
    }
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

@media (min-width: 1280px) {
    .primary-menu {
        gap: 1rem;
    }
}

.primary-menu li {
    margin: 0;
    flex-shrink: 0;
    position: relative;
}

.primary-menu a {
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.primary-menu a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after,
.primary-menu .current_page_item a::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.primary-menu .menu-item-has-children {
    position: relative;
}

.primary-menu .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.primary-menu .menu-item-has-children > a {
    pointer-events: none;
    cursor: default;
    padding-right: 1.25rem;
}

.primary-menu .menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-text);
    transition: all 0.3s ease;
}

.primary-menu .menu-item-has-children:hover > a::before {
    border-top-color: var(--color-primary);
    transform: translateY(-50%) rotate(180deg);
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 0;
    padding-top: 1rem;
    margin-top: 0.25rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}

.primary-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu .sub-menu a {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    display: block;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.primary-menu .sub-menu a::after {
    display: none;
}

.primary-menu .sub-menu a:hover {
    background: var(--color-bg-light);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: var(--color-secondary);
    border: clamp(.25rem, .2232rem + .1339vw, .34375rem) solid transparent;
    border-radius: 2em;
    padding: 0.75rem 2rem;
    cursor: pointer;
    color: var(--color-text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary);
}

@media (min-width: 1280px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    z-index: 9999;
    padding: var(--gap-md);
    overflow-y: auto;
}

.mobile-navigation.is-open {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: var(--gap-sm);
    right: var(--gap-sm);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem;
    line-height: 1;
}

.mobile-navigation .primary-menu {
    flex-direction: column;
    gap: 0;
    margin-top: var(--gap-xl);
}

.mobile-navigation .primary-menu li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-navigation .primary-menu a {
    padding: var(--gap-sm) 0;
    font-size: var(--font-size-lg);
}

/* Mobile Dropdown Styles */
.mobile-navigation .menu-item-has-children > a {
    pointer-events: auto;
    cursor: pointer;
    padding-right: 2rem;
    position: relative;
}

.mobile-navigation .menu-item-has-children > a::before {
    border-top-color: var(--color-text);
    transform: translateY(-50%);
    right: 0.5rem;
}

.mobile-navigation .menu-item-has-children.is-open > a::before {
    border-top-color: var(--color-primary);
    transform: translateY(-50%) rotate(180deg);
}

.mobile-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: var(--color-bg-light);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    display: none;
    backdrop-filter: none;
}

.mobile-navigation .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.mobile-navigation .sub-menu a {
    padding-left: var(--gap-md);
    font-size: var(--font-size-base);
    margin: 0;
}

.mobile-navigation .sub-menu a:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: var(--color-primary);
}

@media (min-width: 1280px) {
    .mobile-navigation {
        display: none !important;
    }
}

/* Main Content */
#main-content {
    min-height: 60vh;
}

/* Page Header Section */
.page-header-section {
    padding: var(--gap-lg) 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.page-header-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .page-header-content {
        grid-template-columns: 2fr 1fr;
        gap: var(--gap-xl);
    }
}

.page-header-title {
    margin: 0;
}

.page-header-right {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.page-header-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
}

.page-header-description p {
    margin: 0;
}

.page-header-button {
    align-self: flex-start;
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
}

.page-header-image-wrapper {
    position: relative;
    z-index: 2;
    margin-top: var(--gap-xl);
}

.page-header-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header-circles {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    width: 80%;
    height: 80%;
    pointer-events: none;
}

/* Page Content */
.page-content {
    padding: var(--gap-xl) 0;
}

.entry-content {
    max-width: 800px;
}

.entry-content > * + * {
    margin-top: var(--gap-md);
}

article:last-child {
    margin-bottom: 0;
}

/* Footer */
#site-footer {
    margin-top: var(--gap-sm);
}

/* Footer Banner */
.footer-banner {
    padding: var(--gap-lg) 0;
}

.footer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
    background-color: var(--color-gray-light);
    padding: var(--gap-md) var(--gap-lg);
}

.footer-banner-left {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
}

.footer-circles {
    flex-shrink: 0;
}

.footer-banner-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    margin: 0;
}

.footer-banner-right {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .footer-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-banner-left {
        flex-direction: column;
    }
}

/* Footer Newsletter */
.footer-newsletter {
    background-color: var(--color-secondary);
    padding: var(--gap-md) 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-lg);
}

.newsletter-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin: 0 0 var(--gap-xs) 0;
    color: var(--color-text);
}

.newsletter-subtitle {
    font-size: var(--font-size-base);
    margin: 0;
    color: var(--color-text);
}

.newsletter-form-wrapper {
    display: flex;
    gap: 0;
    background: var(--color-bg-light);
    border-radius: 2em;
    max-width: 750px;
    width: 100%;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    background: transparent;
    color: var(--color-text);
    min-width: 350px;
}

.newsletter-input::placeholder {
    color: var(--color-text-light);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-submit {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-text);
    border: clamp(.25rem, .2232rem + .1339vw, .34375rem) solid transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 2em;
    flex-shrink: 0;
    margin: 0;
}

.newsletter-submit:hover {
    background: var(--color-bg-light);
    border-color: white;
}

@media (max-width: 900px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form-wrapper {
        width: 100%;
    }

    .newsletter-input {
        min-width: 0;
    }
}

/* Footer Main */
.footer-main {
    background-color: var(--color-bg);
    padding: var(--gap-lg) 0 var(--gap-md) 0;
}

.footer-logo {
    margin-bottom: var(--gap-md);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap-lg);
    margin-bottom: var(--gap-md);
}

.footer-column h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--gap-sm);
    color: var(--color-text);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--gap-md) 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--color-text);
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--gap-md);
    border-top: 1px solid var(--color-border);
    gap: var(--gap-md);
}

.footer-social {
    flex-shrink: 0;
}

.social-icon {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-copyright p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0;
}

.footer-copyright a {
    color: var(--color-text-light);
    text-decoration: underline;
}

.footer-copyright a:hover {
    color: var(--color-text);
}

@media (max-width: 767px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    #main-content {
        padding: var(--gap-md) 0;
    }
}

/* ===========================
   About Page Styles
   =========================== */

/* Vision Section */
.about-vision-section {
    padding: var(--gap-md) 0;
    background-color: var(--color-bg);
}

/* Who Section */
.about-who-section {
    padding: var(--gap-md) 0;
    background-color: var(--color-bg-light);
}

/* Mission Section */
.about-mission-section {
    padding: var(--gap-md) 0;
    background-color: var(--color-bg);
}

/* Mission World Section */
.about-mission-world-section {
    padding: var(--gap-md) 0;
    background-color: var(--color-bg);
}

/* Common About Section Typography */
.about-section-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
}

.about-subsection-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
    margin-top: var(--gap-md);
}

.about-subsection-title:first-child {
    margin-top: 0;
}

.about-section-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

.about-section-text p {
    margin-bottom: 1rem;
}

.about-section-text p:last-child {
    margin-bottom: 0;
}

/* Leader link styling */
.about-leader-link {
    color: var(--color-text);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.about-leader-link:hover {
    color: var(--color-primary);
}

/* Quote Section */
.about-quote-section {
    padding: var(--gap-md) 0;
}

.about-quote-wrapper {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #a8b566 0%, #b5c47a 100%);
    border-radius: 1.5rem;
    padding: var(--gap-md);
}

.quote-circles-icon {
    margin-bottom: var(--gap-sm);
    display: flex;
    justify-content: center;
}

.about-quote {
    margin: 0;
}

.quote-text {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
}

.quote-text::before {
    content: '"';
}

.quote-text::after {
    content: '"';
}

.quote-citation {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 500;
    font-style: normal;
    color: var(--color-text);
}

/* Responsive About Page Styles */
@media (max-width: 767px) {
    .about-vision-section,
    .about-who-section,
    .about-mission-section,
    .about-mission-world-section,
    .about-quote-section {
        padding: var(--gap-md) 0;
    }
}

/* ===========================
   About Gina Page Styles
   =========================== */

/* Reduce page header bottom padding on About Gina page */
.page-template-page-about-gina .page-header-section {
    padding-bottom: 0;
}

.gina-content-section {
    padding-bottom: var(--gap-md);
}

.gina-page-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: var(--gap-lg);
}

.gina-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--gap-lg) 0;
}

.gina-photo-wrapper {
    margin: var(--gap-lg) 0;
}

.gina-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.gina-intro-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-top: var(--gap-lg);
}

.gina-intro-text h2,
.gina-intro-text h3 {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-weight: 500;
    color: var(--color-text);
    margin-top: var(--gap-md);
    margin-bottom: var(--gap-sm);
}

.gina-intro-text h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.gina-intro-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.gina-intro-text p {
    margin-bottom: var(--gap-sm);
}

.gina-intro-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .gina-content-section {
        padding-bottom: var(--gap-md);
    }

    .gina-page-title {
        margin-bottom: var(--gap-md);
    }

    .gina-divider {
        margin: var(--gap-md) 0;
    }

    .gina-photo-wrapper {
        margin: var(--gap-md) 0;
    }

    .gina-intro-text {
        margin-top: var(--gap-md);
    }
}

/* ===========================
   Archive/Blog Styles
   =========================== */

.archive-header-section {
    padding: var(--gap-lg) 0 var(--gap-md) 0;
}

.archive-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

.archive-content-section {
    padding: var(--gap-md) 0;
}

.archive-filters {
    display: flex;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-xl);
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 400;
    padding: 0.625rem 1.5rem;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
}

.filter-btn.active {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

/* Colored borders for category filter buttons */
.filter-btn[data-category="articles"] {
    border-color: var(--color-primary);
}

.filter-btn[data-category="conversation"] {
    border-color: var(--color-secondary);
}

.filter-btn[data-category="press"] {
    border-color: #e74c3c;
}

/* Active/hover states for category filters */
.filter-btn[data-category="articles"]:hover,
.filter-btn[data-category="articles"].active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.filter-btn[data-category="conversation"]:hover,
.filter-btn[data-category="conversation"].active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.filter-btn[data-category="press"]:hover,
.filter-btn[data-category="press"].active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    margin-bottom: var(--gap-xl);
}

.article-card {
    background: #fff;
    padding: var(--gap-md);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Staggered animation delays for cards */
.article-card:nth-child(1) { animation-delay: 0.05s; }
.article-card:nth-child(2) { animation-delay: 0.1s; }
.article-card:nth-child(3) { animation-delay: 0.15s; }
.article-card:nth-child(4) { animation-delay: 0.2s; }
.article-card:nth-child(5) { animation-delay: 0.25s; }
.article-card:nth-child(6) { animation-delay: 0.3s; }
.article-card:nth-child(7) { animation-delay: 0.35s; }
.article-card:nth-child(8) { animation-delay: 0.4s; }
.article-card:nth-child(9) { animation-delay: 0.45s; }
.article-card:nth-child(10) { animation-delay: 0.5s; }
.article-card:nth-child(11) { animation-delay: 0.55s; }
.article-card:nth-child(12) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-category {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 400;
    padding: 0.375rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    color: var(--color-text);
    background: transparent;
    margin-bottom: var(--gap-md);
    transition: all 0.3s ease;
}

/* Category-specific border colors for badges */
.article-card[data-category="articles"] .article-category {
    border-color: var(--color-primary);
}

.article-card[data-category="conversation"] .article-category {
    border-color: var(--color-secondary);
}

.article-card[data-category="press"] .article-category {
    border-color: #e74c3c;
}

/* Hover states - fill card and badge with category colors */
.article-card[data-category="articles"]:hover {
    background-color: var(--color-primary);
}

.article-card[data-category="articles"]:hover .article-category {
    background-color: var(--color-primary);
    border-color: #fff;
    color: #fff;
}

.article-card[data-category="articles"]:hover .article-publication,
.article-card[data-category="articles"]:hover .article-title,
.article-card[data-category="articles"]:hover .article-title a {
    color: #fff;
}

.article-card[data-category="conversation"]:hover {
    background-color: var(--color-secondary);
}

.article-card[data-category="conversation"]:hover .article-category {
    background-color: var(--color-secondary);
    border-color: #fff;
    color: #fff;
}

.article-card[data-category="conversation"]:hover .article-publication,
.article-card[data-category="conversation"]:hover .article-title,
.article-card[data-category="conversation"]:hover .article-title a {
    color: #fff;
}

.article-card[data-category="press"]:hover {
    background-color: #e74c3c;
}

.article-card[data-category="press"]:hover .article-category {
    background-color: #e74c3c;
    border-color: #fff;
    color: #fff;
}

.article-card[data-category="press"]:hover .article-publication,
.article-card[data-category="press"]:hover .article-title,
.article-card[data-category="press"]:hover .article-title a {
    color: #fff;
}

.article-publication {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.article-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0;
}

.article-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--gap-md);
    }
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================================
   Press & PR Page
   ============================================================================ */

.page-template-page-press-pr .page-header-section {
    padding-bottom: 0;
}

/* As Seen In Section */
.press-as-seen-in-section {
    padding: var(--gap-md) 0;
    text-align: center;
}

.press-as-seen-in-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--gap-md);
    color: var(--color-text);
    text-align: center;
}

.press-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--gap-md) 0;
}

.press-logos-wrapper {
    padding: var(--gap-md) 0;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

.press-logo {
    flex: 0 0 auto;
}

.press-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.press-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Media Enquiries Section */
.press-enquiries-section {
    padding: var(--gap-md) 0 0 0;
}

.press-enquiries-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--gap-md);
    color: var(--color-text);
}

.press-enquiries-intro {
    font-size: var(--font-size-lg);
    margin-bottom: var(--gap-md);
    color: var(--color-text-light);
}

.press-enquiries-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--gap-lg);
}

.press-enquiries-list li {
    font-size: var(--font-size-base);
    margin-bottom: var(--gap-xs);
    color: var(--color-text-light);
}

.press-enquiries-footer {
    font-size: var(--font-size-base);
    margin-bottom: var(--gap-md);
    color: var(--color-text-light);
}

.press-enquiries-footer a {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: #8B0000;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.press-enquiries-button {
    display: inline-block;
}

@media (max-width: 768px) {
    .press-logos {
        gap: var(--gap-lg);
    }

    .press-logo img {
        height: 32px;
    }
}

/* ============================================================================
   Contact Page
   ============================================================================ */

.page-template-page-contact .page-header-section {
    padding-bottom: 0;
}

.contact-content-section {
    padding: var(--gap-md) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: start;
}

.contact-form-wrapper {
    background: #f1edea;
    padding: 5rem 2rem 2rem 2rem;
    border-radius: 0;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2rem;
    width: 40px;
    height: 39px;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='55' viewBox='0 0 56 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='44.43' cy='24.54' r='10.95' fill='%2393bde8'/%3E%3Ccircle cx='13.06' cy='13.59' r='12.93' fill='%234b6f34'/%3E%3Ccircle cx='22.77' cy='45.2' r='9.71' fill='%23e8b428'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

div.thepsi-contact-form #wpforms-form-7972 {
    position: relative;
    z-index: 2;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
}

.contact-info-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
}

.contact-linkedin-link {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: #8B0000;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
    color: var(--color-text-light);
}

.contact-hours-text {
    color: var(--color-text-light);
    margin: 0;
}

/* WPForms Styling */
div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--gap-xs);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-required-label {
    color: #000;
}

div.thepsi-contact-form #wpforms-form-7972 input[type="text"],
div.thepsi-contact-form #wpforms-form-7972 input[type="email"] {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    background: #fff;
    color: var(--color-text);
}

div.thepsi-contact-form #wpforms-form-7972 textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    background: #fff;
    color: var(--color-text);
}

div.thepsi-contact-form #wpforms-form-7972 input[type="text"]:focus,
div.thepsi-contact-form #wpforms-form-7972 input[type="email"]:focus,
div.thepsi-contact-form #wpforms-form-7972 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field {
    margin-bottom: var(--gap-sm);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-checkbox {
    margin-top: calc(var(--gap-sm) * -1);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-checkbox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-checkbox li {
    margin-bottom: var(--gap-xs);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-checkbox label {
    font-size: 0.8rem;
    color: var(--color-text);
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-field-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-submit-container {
    text-align: left;
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-submit-container button.thepsi-contact-form-submit {
    padding: 0.875rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: clamp(.25rem, .2232rem + .1339vw, .34375rem) solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2em;
    background: var(--color-secondary);
    color: var(--color-text);
    height: auto;
}

div.thepsi-contact-form #wpforms-form-7972 .wpforms-submit-container button.thepsi-contact-form-submit:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary);
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   Our Approach Page
   ============================================================================ */

.page-template-page-our-approach .page-header-section {
    padding-bottom: 0;
}

.approach-what-we-bring-section {
    padding: var(--gap-xl) 0 var(--gap-md) 0;
    text-align: center;
}

.approach-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--gap-md);
    color: var(--color-text);
}

.approach-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

.approach-bring-list {
    list-style: none;
    padding: 0;
    margin: var(--gap-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    align-items: center;
}

.approach-bring-item {
    background: #F0EDEA;
    border-radius: 50px;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    width: fit-content;
}

.approach-bring-bullet {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.approach-bring-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    font-style: italic;
    text-align: left;
}

.approach-info-section {
    padding: var(--gap-md) 0;
}

.approach-info-block {
    margin-bottom: var(--gap-lg);
}

.approach-info-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.approach-levels-section {
    padding: var(--gap-md) 0;
}

.approach-levels-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.approach-level-item {
    margin-bottom: var(--gap-sm);
}

.approach-level-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--gap-xs);
    color: var(--color-text);
}

.approach-level-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   Speaking Page
   ============================================================================ */

.page-template-page-speaking .page-header-section {
    padding-bottom: 0;
}

.page-template-page-speaking .about-quote-section {
    padding-top: var(--gap-xl);
}

/* Represented By Section */
.speaking-represented-section {
    padding: var(--gap-md) 0;
    text-align: center;
}

.speaking-represented-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 var(--gap-sm) 0;
    color: var(--color-text);
}

.speaking-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

.speaking-logos-wrapper {
    padding: var(--gap-md) 0;
}

.speaking-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

.speaking-logo {
    flex: 0 0 auto;
}

.speaking-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.speaking-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Topics Section */
.speaking-topics-section {
    padding: var(--gap-md) 0;
}

.speaking-topics-intro-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--gap-sm);
    color: var(--color-text);
}

.speaking-topics-intro-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: var(--gap-lg);
}

.speaking-topics-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.speaking-topic-item {
    margin-bottom: var(--gap-sm);
}

.speaking-topic-title {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    margin-bottom: var(--gap-sm);
    color: var(--color-text);
}

.speaking-topic-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .archive-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1.25rem;
        font-size: var(--font-size-sm);
    }

    .spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* ============================================================================
   Book Page
   ============================================================================ */

.page-template-page-book .page-header-section {
    padding-bottom: 0;
}

/* Book Info Section */
.book-info-section {
    padding: var(--gap-md) 0;
}

.book-info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
    align-items: center;
    position: relative;
}

.book-circles-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.book-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.book-cover-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.book-details {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    position: relative;
    z-index: 1;
}

.book-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0;
}

.book-description {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

.book-description p {
    margin-bottom: var(--gap-sm);
}

.book-description p:last-child {
    margin-bottom: 0;
}

.book-description ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--gap-sm);
}

.book-description ul li {
    margin-bottom: var(--gap-xs);
}

.book-store-links-text {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.book-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
}

.book-store-link {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: #8B0000;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
}

.book-store-link:hover {
    color: var(--color-primary);
}

.book-store-link:not(:last-child)::after {
    content: ' |';
    margin-left: var(--gap-xs);
    text-decoration: none;
    color: var(--color-text-light);
}

/* Order Button Section */
.book-order-section {
    padding: var(--gap-md) 0;
    text-align: center;
}

.book-order-button {
    display: inline-block;
}

/* Prologue Section */
.book-prologue-section {
    padding: var(--gap-md) 0;
}

.book-prologue-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--gap-sm);
    align-items: stretch;
}

.book-author-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.book-author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-prologue-content {
    background: #F0EDEA;
    padding: var(--gap-md);
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.book-prologue-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.book-prologue-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.book-prologue-text p {
    margin-bottom: var(--gap-sm);
}

.book-prologue-text p:last-child {
    margin-bottom: 0;
}

.book-read-more-button {
    display: inline-block;
}

/* Buying for Team Section */
.book-team-section {
    padding: var(--gap-md) 0;
    text-align: left;
}

.book-team-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.book-team-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

.book-team-text p {
    margin-bottom: var(--gap-sm);
}

.book-team-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Book Page Styles */
@media (max-width: 768px) {
    .book-info-layout,
    .book-prologue-layout {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .book-cover-image,
    .book-author-image {
        max-width: 200px;
    }
}

/* ============================================================================
   Retreats Page
   ============================================================================ */

.page-template-page-retreats .page-header-section {
    padding-bottom: 0;
}

.retreat-box {
    padding: var(--gap-xl) 0;
}

.retreat-box-inner {
    background: #F0EDEA;
    padding: var(--gap-xl);
    border-radius: 0;
}

.retreat-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 var(--gap-lg) 0;
}

.retreat-image-wrapper {
    margin-bottom: var(--gap-lg);
}

.retreat-image {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.retreat-description,
.retreat-intro {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.retreat-description p,
.retreat-intro p {
    margin-bottom: var(--gap-sm);
}

.retreat-description p:last-child,
.retreat-intro p:last-child {
    margin-bottom: 0;
}

.retreat-steps {
    margin-bottom: var(--gap-md);
}

.retreat-steps-title {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.retreat-steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: var(--gap-sm);
}

.retreat-steps-list li {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
    line-height: 1.7;
}

.retreat-steps-list li strong {
    color: var(--color-text);
}

.retreat-closing-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--gap-md);
}

.retreat-closing-list li {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.7;
}

.retreat-details {
    margin-bottom: var(--gap-md);
}

.retreat-detail-item {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: var(--gap-xs);
}

.retreat-detail-item strong {
    color: var(--color-text);
}

.retreat-cost {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.retreat-button {
    display: inline-block;
}

/* Responsive Retreats Page Styles */
@media (max-width: 768px) {
    .retreat-box-inner {
        padding: var(--gap-lg);
    }
}

/* ============================================================================
   Lux Tool Page
   ============================================================================ */

.page-template-page-lux-tool .page-header-section {
    padding-bottom: 0;
}

/* Trusted By Section */
.lux-trusted-section {
    padding: var(--gap-xl) 0 var(--gap-md) 0;
    text-align: center;
}

.lux-trusted-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 var(--gap-sm) 0;
    color: var(--color-text);
}

.lux-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

.lux-logos-wrapper {
    padding: var(--gap-md) 0;
}

.lux-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-sm);
    flex-wrap: nowrap;
}

.lux-logo {
    flex: 0 0 auto;
}

.lux-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lux-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Product Boxes */
.lux-product-box {
    padding: var(--gap-md) 0;
}

.lux-product-box-inner {
    background: #F0EDEA;
    padding: var(--gap-xl);
    border-radius: 0;
}

.lux-product-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 var(--gap-md) 0;
}

.lux-product-headline {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 var(--gap-md) 0;
}

.lux-product-description {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.lux-product-description p {
    margin-bottom: var(--gap-sm);
}

.lux-product-description p:last-child {
    margin-bottom: 0;
}

.lux-product-button {
    display: inline-block;
}

/* Responsive Lux Tool Page Styles */
@media (max-width: 768px) {
    .lux-logos {
        gap: var(--gap-xs);
        flex-wrap: wrap;
    }

    .lux-logo img {
        height: 40px;
    }

    .lux-product-box-inner {
        padding: var(--gap-lg);
    }
}

/* ===================================
   Programs Page Styles
   =================================== */

/* Programs Intro Section */
.programs-intro-section {
    padding: var(--gap-lg) 0;
    text-align: center;
}

.programs-intro-content {
    padding: var(--gap-md) 0;
}

.programs-intro-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 900px;
    margin: 0 auto var(--gap-md);
}

.programs-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

.programs-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    align-items: center;
}

.programs-bullet-item {
    background: #F0EDEA;
    border-radius: 50px;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    width: fit-content;
}

.programs-bullet-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.programs-bullet-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    font-style: italic;
    text-align: left;
}

/* Program Box Section */
.program-box {
    padding: var(--gap-xl) 0;
}

.program-box-inner {
    background: #F0EDEA;
    border-radius: 8px;
    padding: var(--gap-xl);
}

.program-image-wrapper {
    margin-bottom: var(--gap-lg);
}

.program-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.program-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--gap-md);
}

.program-description {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--gap-lg);
}

.program-description p {
    margin-bottom: var(--gap-sm);
}

.program-description p:last-child {
    margin-bottom: 0;
}

.program-booking-options {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
    margin-bottom: var(--gap-lg);
}

.program-booking-option {
    display: flex;
    flex-direction: column;
}

.program-open-with-cpd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: start;
}

.program-booking-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
}

.program-booking-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.program-cost {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--gap-md);
}

.program-button {
    display: inline-block;
    align-self: flex-start;
}

/* CPD Badge Section */
.program-cpd-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    text-align: center;
}

.cpd-badge-image {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.cpd-badge-text {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
}

.cpd-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.cpd-id {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0;
}

.cpd-credits {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0;
}

/* Programs Featured Section */
.programs-featured-section {
    padding: var(--gap-md) 0;
    text-align: center;
}

.programs-featured-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--gap-md);
}

.programs-featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-md);
    flex-wrap: nowrap;
}

.programs-featured-logo {
    flex: 0 0 auto;
}

.programs-featured-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.programs-featured-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Programs Page Styles */
@media (max-width: 768px) {
    .program-box-inner {
        padding: var(--gap-lg);
    }

    .program-open-with-cpd {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .programs-featured-logos {
        gap: var(--gap-sm);
        flex-wrap: wrap;
    }

    .programs-featured-logo img {
        height: 40px;
    }
}

/* ===================================
   Toolkits Page Styles
   =================================== */

/* Toolkit Box Section */
.toolkit-box {
    padding: var(--gap-md) 0;
}

.toolkit-box-inner {
    background: #F0EDEA;
    border-radius: 8px;
    padding: var(--gap-lg);
}

.toolkit-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
    line-height: 1.2;
}

.toolkit-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
}

.toolkit-description p {
    margin-bottom: var(--gap-sm);
}

.toolkit-description p:last-child {
    margin-bottom: 0;
}

.toolkit-intro {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.toolkit-content-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.toolkit-content-text p {
    margin-bottom: var(--gap-sm);
}

.toolkit-content-text p:last-child {
    margin-bottom: 0;
}

.toolkit-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto var(--gap-md);
}

.toolkit-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.toolkit-cpd-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: auto;
}

.toolkit-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 var(--gap-md);
}

.toolkit-bullet-list li {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
    padding-left: 1.5rem;
    position: relative;
}

.toolkit-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-weight: 600;
}

.toolkit-bullet-list li:last-child {
    margin-bottom: 0;
}

.toolkit-details {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.toolkit-details p {
    margin-bottom: var(--gap-xs);
}

.toolkit-details p:last-child {
    margin-bottom: 0;
}

.toolkit-button {
    display: inline-block;
}

/* Responsive Toolkits Page Styles */
@media (max-width: 768px) {
    .toolkit-box-inner {
        padding: var(--gap-md);
    }

    .toolkit-image-wrapper {
        max-width: 100%;
    }

    .toolkit-cpd-badge {
        width: 60px;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* ===================================
   Culture Change Program Page Styles
   =================================== */

/* CCP Intro Section */
.ccp-intro-section {
    padding: var(--gap-md) 0 0;
}

.ccp-intro-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 900px;
    margin: 0 auto var(--gap-md);
}

.ccp-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--gap-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    align-items: center;
}

.ccp-bullet-item {
    background: #F0EDEA;
    border-radius: 50px;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    width: fit-content;
}

.ccp-bullet-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ccp-bullet-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    font-style: italic;
    text-align: left;
}

/* CCP Step Sections */
.ccp-step-section {
    padding: 0;
    margin-bottom: var(--gap-md);
}

.ccp-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0 0 var(--gap-md);
}

.ccp-step-box {
    background: #F0EDEA;
    border-radius: 8px;
    padding: var(--gap-lg);
}

.ccp-step-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
    line-height: 1.2;
}

.ccp-step-headline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--gap-sm);
    line-height: 1.4;
}

.ccp-step-content {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--gap-md);
}

.ccp-step-content p {
    margin-bottom: var(--gap-sm);
}

.ccp-step-content p:last-child {
    margin-bottom: 0;
}

.ccp-step-content ul {
    list-style: none;
    padding-left: 0;
    margin: var(--gap-sm) 0;
}

.ccp-step-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--gap-xs);
}

.ccp-step-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-weight: 600;
}

.ccp-step-button {
    display: inline-block;
}

/* CCP Footer Section */
.ccp-footer-section {
    padding: 0;
    margin-top: var(--gap-md);
}

.ccp-footer-text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    text-align: left;
}

/* Responsive CCP Page Styles */
@media (max-width: 768px) {
    .ccp-step-box {
        padding: var(--gap-md);
    }
}

/* ======================================
   HOME PAGE STYLES
   ====================================== */

/* Color Variables for Home Page */
:root {
    --blue-glare: #93bde8;
    --red: #e74c3c;
    --yellow: #e8b428;
    --green: #a8b566;
}

/* Hero Card Section */
.home-hero-section {
    padding: var(--gap-md) 0;
}

.home-hero-card {
    position: relative;
    background: #ECD18E;
    border-radius: 1rem;
    padding: var(--gap-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--gap-md);
    align-items: start;
    overflow: hidden;
}

.home-hero-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    display: block;
}

.home-hero-caption {
    margin-top: var(--gap-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-align: left;
    width: 100%;
    max-width: 200px;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
}

.home-hero-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.75rem, 1.5179rem + 1.1607vw, 2.625rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.home-hero-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
}

.home-hero-text p {
    margin: 0 0 var(--gap-sm) 0;
}

.home-hero-text p:last-child {
    margin-bottom: 0;
}

.home-hero-text a {
    color: var(--color-text-light);
    text-decoration: underline;
}

.home-hero-text a:hover {
    color: var(--color-text);
}

.home-hero-circles {
    position: absolute;
    top: var(--gap-sm);
    right: var(--gap-sm);
    width: 67px;
    height: 66px;
}

/* Featured Logos Section */
.home-logos-section {
    padding: var(--gap-md) 0;
}

.home-logos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--gap-md);
}

.home-logos-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0;
}

.home-logos-locations {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #882124;
    margin: 0;
}

.home-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
}

.home-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

/* Three Cards Section */
.home-cards-section {
    padding: var(--gap-md) 0;
}

.home-cards-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 var(--gap-md) 0;
}

.home-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.home-card {
    display: flex;
    flex-direction: column;
    background: #F0EDEA;
    border-radius: 0.5rem;
    padding: var(--gap-md);
}

.home-card-circles {
    margin-bottom: var(--gap-md);
}

.home-card-circles svg {
    width: 50px;
    height: 50px;
}

.home-card-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.home-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 var(--gap-sm) 0;
    flex-grow: 1;
}

.home-card-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

/* Authenticity Section */
.home-auth-section {
    padding: var(--gap-md) 0;
}

.home-auth-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.home-auth-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 var(--gap-md) 0;
}

.home-auth-image-wrapper {
    margin: 0 0 var(--gap-md) 0;
}

.home-auth-image {
    width: 100%;
    height: auto;
    display: block;
}

.home-auth-bullets-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
}

.home-auth-bullets-column {
    display: flex;
    flex-direction: column;
}

.home-auth-bullets-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--gap-sm) 0;
}

.home-auth-bullets-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.home-auth-bullet-item {
    display: inline-flex;
    align-items: center;
    background: #F0EDEA;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
}

.home-auth-bullet-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.home-auth-bullet-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
}

/* Book Section */
.home-book-section {
    padding: var(--gap-md) 0;
}

.home-book-wrapper {
    display: flex;
    gap: var(--gap-md);
    align-items: stretch;
}

.home-book-image-wrapper {
    flex: 0 0 auto;
    width: 300px;
    display: flex;
}

.home-book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-book-content {
    flex: 1;
    background: #F0EDEA;
    border-radius: 0.5rem;
    padding: var(--gap-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.home-book-review {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
}

.home-book-rating {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}

.home-book-stars {
    color: #f39c12;
    font-size: var(--font-size-base);
}

.home-book-amazon {
    height: 20px;
    width: auto;
}

.home-book-button {
    align-self: flex-start;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* Articles Section */
.home-articles-section {
    padding: var(--gap-md) 0;
}

.home-articles-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 var(--gap-md) 0;
}

.home-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-article-item {
    display: flex;
    flex-direction: column;
}

.home-article-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0 0 var(--gap-sm) 0;
}

.home-article-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 var(--gap-sm) 0;
}

.home-article-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-article-title a:hover {
    color: var(--color-primary);
}

.home-article-date {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0 0 var(--gap-sm) 0;
}

/* Press Section */
.home-press-section {
    padding: var(--gap-md) 0;
}

.home-press-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 var(--gap-md) 0;
}

.home-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
}

.home-press-card {
    background: #fff;
    padding: var(--gap-md);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.home-press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.home-press-category {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 400;
    padding: 0.375rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    color: var(--color-text);
    background: transparent;
    margin-bottom: var(--gap-md);
    transition: all 0.3s ease;
}

/* Category-specific border colors */
.home-press-card[data-category="articles"] .home-press-category {
    border-color: var(--color-primary);
}

.home-press-card[data-category="conversation"] .home-press-category {
    border-color: var(--color-secondary);
}

.home-press-card[data-category="press"] .home-press-category {
    border-color: #e74c3c;
}

/* Hover states - fill card and badge with category colors */
.home-press-card[data-category="articles"]:hover {
    background-color: var(--color-primary);
}

.home-press-card[data-category="articles"]:hover .home-press-category {
    background-color: var(--color-primary);
    border-color: #fff;
    color: #fff;
}

.home-press-card[data-category="articles"]:hover .home-press-publication,
.home-press-card[data-category="articles"]:hover .home-press-card-title,
.home-press-card[data-category="articles"]:hover .home-press-card-title a {
    color: #fff;
}

.home-press-card[data-category="conversation"]:hover {
    background-color: var(--color-secondary);
}

.home-press-card[data-category="conversation"]:hover .home-press-category {
    background-color: var(--color-secondary);
    border-color: #fff;
    color: #fff;
}

.home-press-card[data-category="conversation"]:hover .home-press-publication,
.home-press-card[data-category="conversation"]:hover .home-press-card-title,
.home-press-card[data-category="conversation"]:hover .home-press-card-title a {
    color: #fff;
}

.home-press-card[data-category="press"]:hover {
    background-color: #e74c3c;
}

.home-press-card[data-category="press"]:hover .home-press-category {
    background-color: #e74c3c;
    border-color: #fff;
    color: #fff;
}

.home-press-card[data-category="press"]:hover .home-press-publication,
.home-press-card[data-category="press"]:hover .home-press-card-title,
.home-press-card[data-category="press"]:hover .home-press-card-title a {
    color: #fff;
}

.home-press-publication {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: var(--gap-sm);
}

.home-press-card-title {
    font-family: 'Value Serif Pro', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0;
}

.home-press-card-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-press-card-title a:hover {
    color: var(--color-primary);
}

.home-press-button-wrapper {
    display: flex;
    justify-content: center;
}

/* Responsive Home Page Styles */
@media (max-width: 768px) {
    .home-hero-card {
        grid-template-columns: 1fr;
        padding: var(--gap-md);
    }

    .home-hero-image {
        max-width: 150px;
    }

    .home-hero-circles {
        width: 50px;
        height: 50px;
    }

    .home-logos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--gap-sm);
    }

    .home-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gap-sm);
    }

    .home-logo-item img {
        max-width: 100px;
    }

    .home-cards-grid {
        grid-template-columns: 1fr;
    }

    .home-auth-bullets-wrapper {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    .home-book-wrapper {
        flex-direction: column;
    }

    .home-book-image-wrapper {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .home-press-grid {
        grid-template-columns: 1fr;
    }
}
