/* Text Page Styles */

.text-section {
    margin-bottom: 4rem;
}

.text-section:last-child {
    margin-bottom: 0;
}

.text-section h2 {
    padding-bottom: 1rem;
    font-size: clamp(1.25rem, 4vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
}

.text-meta {
    font-family: "Helvetica Neue";
}

/* Text Card — two-column grid */
.text-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.text-card:last-child {
    border-bottom: none;
}

.text-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Meta column */
.text-meta h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.text-date {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

.text-venue {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

.text-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-primary);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.text-link:hover {
    color: var(--color-text-primary);
    border-color: var(--color-text-primary);
}

/* Mobile */
@media (max-width: 768px) {
    .text-card {
        grid-template-columns: 120px 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .text-meta h3 {
        font-size: 1rem;
    }

    .text-meta p {
        font-size: 0.9rem;
    }

    .text-section {
        margin-bottom: 3rem;
    }

    .text-section h2 {
        font-size: 1.75rem;
        padding-bottom: 0;
        margin-bottom: 1rem;
    }
}
