/* ================================================= */
/* HOME ANNOUNCEMENTS SECTION                       */
/* ================================================= */
.home-announcements-section {
    padding: 10px 0;
    background: #f9f9f9;
    border-top: 1px solid #e5e5e5;
}

/* Header */
.announcements-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.announcements-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #8b0000;
    margin: 0;
}

.view-all-link {
    font-size: 14px;
    font-weight: bold;
    color: #8b0000;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* List */
.announcements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.announcements-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.announcements-list li:last-child {
    border-bottom: none;
}

.announcement-date {
    display: inline-block;
    min-width: 90px;
    font-size: 13px;
    color: #555;
    font-weight: bold;
}

.announcements-list a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

.announcements-list a:hover {
    color: #8b0000;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 575px) {

    .announcements-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .announcement-date {
        display: block;
        margin-bottom: 4px;
    }

}

/* =========================
   MEDIA SECTION
========================= */

.media-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section title */
.media-title h2 {
    font-weight: 700;
    letter-spacing: 2px;
    color: #8b0000;
}

.media-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.media-divider span {
    width: 60px;
    height: 2px;
    background: #022163;
}

.media-divider i {
    margin: 0 12px;
    color: #022163;
}

/* Column headings */
.media-heading {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Cards */
.media-card {
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
}

/* YouTube iframe */
.media-card iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Twitter */
.twitter-card {
    height: 350px;
    overflow-y: auto;
    background-color: #ffffff;
}

/* Around the World */
.world-card {
    position: relative;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}

.world-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.world-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.world-overlay h5 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.read-more {
    color: #ff3b3b;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}


/* =========================
   BACK TO TOP BUTTON
========================= */

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    background: #8b0000;
    color: #ffffff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #0a8f3c;
    transform: translateY(-4px);
}

/*media card*/
.media-card iframe {
    width: 100%;
    height: 315px;
    border-radius: 6px;
}

.media-caption {
    font-weight: 500;
    color: #444;
}


/*logout*/
.logout-btn {
    background: #8b0000;
    color: #fff;
    border-radius: 4px;
    
}

.logout-btn:hover {
    background: #0a8f3c;
}
/*around the world card*/
.world-card {
    cursor: pointer;
}

