.editorial-page {
    background-color: var(--color-bg);
}

.breadcrumb {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
    content: "/";
    margin-left: var(--space-2);
    color: var(--color-gray-400);
}

.breadcrumb__item a:hover {
    color: var(--color-primary);
}

.editorial-hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-20);
}

.editorial-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 25, 23, 0.4), rgba(28, 25, 23, 0.6));
}

.editorial-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8);
    color: var(--color-bg);
}

.editorial-hero__tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--color-primary);
}

.editorial-hero__title {
    font-size: var(--text-4xl);
    color: var(--color-bg);
    margin-bottom: var(--space-6);
    font-weight: 400;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .editorial-hero__title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .editorial-hero__title {
        font-size: var(--text-6xl);
    }
}

.editorial-hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(250, 249, 246, 0.9);
    margin-bottom: var(--space-8);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--leading-relaxed);
}

.editorial-grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-24);
}

@media (min-width: 768px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .editorial-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: var(--space-8);
    }
    
    .editorial-card {
        grid-column: span 4;
    }
    
    .editorial-card--large {
        grid-column: span 8;
    }
    
    .editorial-card--wide {
        grid-column: span 6;
    }
}

.editorial-card {
    background-color: var(--color-bg-elevated);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.editorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.editorial-card__image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin: 0;
}

.editorial-card--large .editorial-card__image-wrapper {
    aspect-ratio: 16/9;
}

.editorial-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.editorial-card:hover .editorial-card__image-wrapper img {
    transform: scale(1.05);
}

.editorial-card__content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.editorial-card__category {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.editorial-card__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--color-text);
    font-weight: 400;
}

.editorial-card--large .editorial-card__title {
    font-size: var(--text-3xl);
}

.editorial-card__excerpt {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.editorial-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-transform: uppercase;
    transition: color var(--transition-fast);
    margin-top: auto;
}

.editorial-card__link:hover {
    color: var(--color-primary);
}

.editorial-card__link span {
    transition: transform var(--transition-fast);
}

.editorial-card__link:hover span {
    transform: translateX(4px);
}

.editorial-text-section {
    padding: var(--space-16) 0;
    border-top: 1px solid var(--color-gray-200);
}

.editorial-text-section--alternate {
    background-color: var(--color-gray-50);
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.editorial-text-section__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.editorial-text-section__category {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.editorial-text-section h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.editorial-text-section p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.editorial-text-section p:last-of-type {
    margin-bottom: 0;
}

.editorial-newsletter {
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: var(--space-20) 0;
    margin-top: var(--space-24);
}

.editorial-newsletter__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.editorial-newsletter h2 {
    color: var(--color-bg);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
}

.editorial-newsletter p {
    color: rgba(250, 249, 246, 0.8);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.editorial-newsletter__form {
    max-width: 500px;
    margin: 0 auto;
}

.editorial-newsletter__input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
    .editorial-newsletter__input-group {
        flex-direction: row;
    }
    
    .editorial-newsletter__input-group .input {
        flex: 1;
    }
}

.editorial-newsletter__input-group .input {
    background-color: rgba(250, 249, 246, 0.1);
    border-color: rgba(250, 249, 246, 0.2);
    color: var(--color-bg);
}

.editorial-newsletter__input-group .input::placeholder {
    color: rgba(250, 249, 246, 0.5);
}

.editorial-newsletter__input-group .input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(184, 149, 107, 0.3);
}

.editorial-newsletter__input-group .btn {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    white-space: nowrap;
}

.editorial-newsletter__input-group .btn:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.editorial-newsletter__privacy {
    font-size: var(--text-sm);
    color: rgba(250, 249, 246, 0.6);
    margin-bottom: 0;
}

.editorial-newsletter__privacy a {
    color: rgba(250, 249, 246, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.editorial-newsletter__privacy a:hover {
    color: var(--color-primary);
}

@media (prefers-reduced-motion: reduce) {
    .editorial-card,
    .editorial-card__image-wrapper img,
    .editorial-card__link span {
        transition: none;
    }
}