.home-link {
    float: left;
    display: table;
}

.home-link>img,
.home-link span {
    display: inline-block;
    vertical-align: middle;
}

.home-link span {
    padding-left: 10px;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--base-dark);
    font-weight: 800;
}

/* Section umum */
.modern-agenda {
    padding: 40px 0;
}

/* Judul section */
.modern-agenda .section-title h2.title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.modern-agenda .heading-seperator span {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3c7547;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* Grid card */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Card Agenda */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agenda-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.agenda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.agenda-date {
    background: #3c7547;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    margin-right: 15px;
    flex-shrink: 0;
    min-width: 60px;
}

.agenda-date .agenda-day {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.agenda-date .agenda-month {
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.9;
}

.agenda-body {
    flex: 1;
}

.agenda-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.agenda-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.agenda-title a:hover {
    color: #f4b400;
}

.agenda-location {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.agenda-location i {
    margin-right: 6px;
    color: #f4b400;
}

/* Responsive */
@media (max-width: 768px) {
    .agenda-card {
        flex-direction: row;
        padding: 12px 15px;
    }

    .agenda-date {
        min-width: 50px;
        padding: 6px 10px;
    }

    .agenda-date .agenda-day {
        font-size: 18px;
    }
}


/* Card Pengumuman */
.card-announcement {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-announcement:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-announcement h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.card-announcement h4 a {
    color: #333;
    text-decoration: none;
}

.card-announcement h4 a:hover {
    color: #f4b400;
}

.card-announcement .post-date {
    font-size: 12px;
    color: #999;
}

/* Tombol */
.ttm-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ttm-btn:hover {
    background-color: #3c7547;
    border-color: #3c7547;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}
