.agenda {
    max-width: 600px;
    margin: 0 auto;
}

.wrapper {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.time {
    width: 70px;
    min-width: 70px;
    text-align: center;
    background: #D2050C;
    color: white;
    padding: 10px 0;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.time .day {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.time .month {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    margin-top: 2px;
}

.content {
    padding-top: 5px;
    flex: 1;
}

.title {
    font-weight: bold;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.content .link {
    margin-top: 5px;
}

.content .link a {
    color: #D2050C;
    text-decoration: none;
    font-weight: bold;
}

.content .link a:hover {
    text-decoration: underline;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .time {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .content {
        padding-top: 0;
        text-align: center;
    }
}
