/* Agenda Homepage Section Styles */

.agenda-homepage-wrapper {
    margin: 60px 0;
    padding: 40px 0;
}

.agenda-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: inherit;
}

.agenda-homepage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.agenda-card-homepage {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.agenda-card-homepage:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.agenda-image-link {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.agenda-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.agenda-card-homepage:hover .agenda-card-image {
    transform: scale(1.05);
}

.agenda-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.agenda-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.agenda-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.agenda-card-title a:hover {
    color: #00aaff;
}

.agenda-card-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    line-height: 1.6;
    flex-grow: 1;
}

.agenda-card-content .read-more {
    display: inline-block;
    margin-top: auto;
    color: #00aaff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.agenda-card-content .read-more:hover {
    color: #0088dd;
    text-decoration: underline;
}

.agenda-view-all {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #00aaff;
    border-radius: 6px;
    color: #00aaff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #00aaff;
    color: #000;
}

/* Responsive design */
@media (max-width: 768px) {
    .agenda-section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .agenda-homepage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .agenda-card-image {
        height: 160px;
    }

    .agenda-card-content {
        padding: 20px;
    }
}
