/* Front Page Template */

/* Sections */
.section {
    padding: var(--space-xxl) 0;
}

.section:first-child {
    padding-top: 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section__content {
    margin-bottom: var(--space-lg);
}

.section__actions {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Featured Section */
.section--featured {
    background: var(--color-bg);
}

/* Originals Section */
.section--originals {
    background: var(--color-bg);
}

/* About Section */
.section--about {
    background: var(--color-bg);
}

.about {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about__header {
    margin-bottom: var(--space-lg);
}

.about__text {
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--color-secondary);
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__actions {
    margin-top: var(--space-lg);
}

.about__image {
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .about {
        grid-template-columns: 1fr 1fr;
    }

    .about__header {
        text-align: left;
    }

    .about__actions {
        text-align: left;
    }
}

/* Large Desktop */
@media (min-width: 1025px) {
    .about {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-xxl);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: var(--space-xl) 0;
    }

    .section__header {
        margin-bottom: var(--space-lg);
    }

    .about__image {
        order: -1;
    }
}