
/* Premium Mobile Announcements */
.m-announcement-section {
    padding: 50px 0 50px 0;
    background: #ffffff;
}

.m-announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.m-announcement-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #334155;
    margin: 0;
    text-transform: uppercase;
}

.m-announcement-header .m-btn-all {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Premium Tabs for Mobile */
.m-announcement-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 20px 15px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.m-announcement-tabs::-webkit-scrollbar { display: none; }

.m-tab-btn {
    padding: 8px 18px;
    background: #f1f5f9;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    white-space: nowrap;
    border: none;
    transition: all 0.3s;
}

.m-tab-btn.active {
    background: #024e6e;
    color: #fff;
    box-shadow: 0 8px 15px rgba(2, 78, 110, 0.2);
}

/* Internal Scrollable Container */
.m-announcement-panes {
    max-height: 420px;
    overflow-y: auto;
    padding: 0 20px;
}

.m-ann-pane {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.m-ann-pane.active {
    display: flex;
}

/* Horizontal List Card Design */
.m-ann-card {
    background: #fff;
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    text-decoration: none !important;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    height: 70px;
}

.m-ann-media {
    width: 120px;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.m-ann-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-ann-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(2, 78, 110, 0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
}

.m-ann-content {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-ann-date {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.m-ann-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.m-ann-footer {
    display: none; /* Hidden in list view for compactness */
}
