/* Announcement page layout */
.announcement-label {
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 8px;
}

.announcement-content {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
}

.announcement-details-card {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fafafa;
    padding: 22px;
    margin: 35px 0;
}

.announcement-details-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.announcement-detail-row {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 20px;
    border-top: 1px solid #e3e3e3;
    padding: 16px 0;
}

.announcement-detail-row:first-of-type {
    border-top: 0;
}

.announcement-detail-title {
    font-weight: bold;
    font-size: 1.05rem;
}

.announcement-detail-body {
    line-height: 1.55;
}

.trusted-ticket {
    color: #159447;
    margin-bottom: 6px;
}

@media (max-width: 700px) {
    .announcement-detail-row {
        display: block;
    }

    .announcement-detail-title {
        margin-bottom: 6px;
    }
}
