.hp-main {
    padding-top: 40px;
    background-color: var(--bg-cream-warm);
    min-height: 80vh;
    padding-bottom: 60px;
}
.hp-masthead {
    text-align: center;
    padding: 0 20px 10px 20px;
    max-width: 860px;
    margin: 0 auto;
}
.hp-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin: 0 0 8px 0;
    font-weight: 700;
}
.hp-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--earth-brown);
    margin: 0 0 14px 0;
    line-height: 1;
    border-bottom: 3px double var(--earth-brown);
    padding-bottom: 14px;
}
.hp-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    text-wrap: balance;
}
.hp-sources {
    max-width: 900px;
    margin: 28px auto 0 auto;
    padding: 0 20px;
}
.hp-sources-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.hp-sources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hp-source {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
}
.hp-source-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.hp-source-info {
    min-width: 0;
}
.hp-source-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bee-black);
    margin: 0 0 4px 0;
}
.hp-source-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}
.hp-feed {
    max-width: 900px;
    margin: 32px auto 0 auto;
    padding: 0 20px;
    contain: layout style;
}
.hp-feed-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.hp-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.hp-loading-spinner {
    display: block;
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-light);
    border-top-color: var(--honey-gold);
    border-radius: 50%;
    animation: hp-spin 0.8s linear infinite;
}
@keyframes hp-spin {
    to { transform: rotate(360deg); }
}
.hp-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.hp-item:first-child {
    padding-top: 0;
}
.hp-item:last-of-type {
    border-bottom: none;
}
.hp-item:hover {
    background: rgba(244, 180, 26, 0.04);
}
.hp-item:focus-visible {
    outline: 2px solid var(--honey-gold);
    outline-offset: 2px;
}
.hp-item-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    padding-top: 3px;
    text-align: right;
}
.hp-item-date-month {
    display: block;
    font-size: 0.85rem;
    color: var(--earth-brown);
}
.hp-item-body {
    min-width: 0;
}
.hp-item-source {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    line-height: 1;
    color: #fff;
}
.hp-item-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bee-black);
    line-height: 1.4;
    margin: 0 0 6px 0;
    transition: color 0.15s ease;
}
.hp-item:hover .hp-item-headline {
    color: var(--earth-brown);
}
.hp-item-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.hp-item-arrow {
    font-size: 1rem;
    color: var(--border-medium);
    padding-top: 3px;
    transition: color 0.15s ease, transform 0.15s ease;
}
.hp-item:hover .hp-item-arrow {
    color: var(--earth-brown);
    transform: translateX(3px);
}
.hp-load-more {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 32px auto 0 auto;
    padding: 14px 28px;
    background: var(--earth-brown);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: opacity 0.15s ease;
}
.hp-load-more:hover {
    opacity: 0.85;
}
.hp-load-more:focus-visible {
    outline: 2px solid var(--honey-gold);
    outline-offset: 2px;
}
.hp-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.press-affiliate-section {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}
.press-affiliate-heading {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--honey-gold);
    padding-bottom: 10px;
}
.press-affiliate-intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-secondary);
}
.press-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.press-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ops-surface);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.press-product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.press-product-card:focus-visible {
    outline: 2px solid var(--honey-gold);
    outline-offset: 2px;
}
.press-product-card[data-tier="entry"] {
    border-left: 4px solid var(--honey-gold);
}
.press-product-card[data-tier="therapeutic"] {
    border-left: 4px solid var(--forest-green);
}
.press-product-card[data-tier="reserve"] {
    border-left: 4px solid #7c3aed;
}
.press-product-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}
.press-product-card[data-tier="entry"] .press-product-price {
    color: var(--honey-gold);
}
.press-product-card[data-tier="therapeutic"] .press-product-price {
    color: var(--forest-green);
}
.press-product-card[data-tier="reserve"] .press-product-price {
    color: #7c3aed;
}
.press-disclosure {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
}
.press-disclosure a {
    color: var(--text-muted);
    text-decoration: underline;
}
.press-tools-nav {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 0 20px;
}
.press-tools-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.press-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.press-tool-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2ddd6;
    border-radius: 8px;
    text-decoration: none;
    color: #1b3022;
    font-weight: 600;
    font-size: 0.9rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.press-tool-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}
.press-tool-link:focus-visible {
    outline: 2px solid var(--honey-gold);
    outline-offset: 2px;
}
.press-tool-link i {
    font-size: 1.4rem;
    color: var(--honey-gold);
}
@media (max-width: 768px) {
    .hp-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    .hp-sources-grid {
        grid-template-columns: 1fr;
    }
    .hp-item {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 20px 0;
    }
    .hp-item-date {
        text-align: left;
        display: flex;
        gap: 4px;
    }
    .hp-item-date-month {
        display: inline;
    }
    .hp-item-arrow {
        display: none;
    }
    .hp-item-excerpt {
        display: none;
    }
    .press-product-grid {
        grid-template-columns: 1fr;
    }
    .press-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .press-tool-link {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 10px;
        font-size: 0.8rem;
    }
}
