/* --- ABOUT SECTION LAYOUT --- */
.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px 0;
}

.about-main {
    flex: 2; /* Takes up 2/3 of the space */
}

.announcements-sidebar {
    flex: 1; /* Takes up 1/3 of the space */
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffd700;
    padding: 20px;
    border-radius: 0 4px 4px 0;
}

/* --- TEXT SIZING --- */
.lead-text {
    font-size: 1.6rem; /* Large, punchy intro */
    line-height: 1.4;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
    border-left: 2px solid #333;
    padding-left: 20px;
}

.about-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
}

.about-body strong {
    color: #ffd700;
}

/* --- ANNOUNCEMENTS FEED --- */
.sidebar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.news-item {
    display: block;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
}

.news-item:hover {
    padding-left: 5px;
}

.news-date {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-family: monospace;
    margin-bottom: 4px;
}

.news-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.4;
}

.news-item:hover p {
    color: #ffd700;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }
    .about-main, .announcements-sidebar {
        flex: none;
        width: 100%;
    }
    .announcements-sidebar {
        margin-top: 30px;
        border-left: none;
        border-top: 3px solid #ffd700;
    }
}