/* Detail pages (announcement, signup, event) */

.detail-hero {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-body {
    padding: 20px 16px 32px;
    background: var(--background);
}

.detail-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: block;
}

.detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-meta__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-meta__row svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.4;
    flex-shrink: 0;
}

.detail-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    white-space: pre-line;
    margin-bottom: 24px;
}

.detail-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 999px;
    background: var(--button-dark);
    color: var(--button-text);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.detail-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
