
.cec-event-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f8f8f8;
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    box-sizing: border-box;
}

.cec-date-box {
    width: 160px;
    height: 160px;
    border: 2px solid #1fc7b3;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    flex-shrink: 0;
}

.cec-day {
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
}

.cec-month {
    font-size: 20px;
    margin-top: 10px;
}

.cec-content {
    flex: 1;
}

.cec-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cec-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cec-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 600px;
}

.cec-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cec-btn {
    padding: 18px 40px;
    border-radius: 60px;
    background: #1fc7b3;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cec-btn:hover {
    opacity: 0.88;
}

@media (max-width: 767px) {
    .cec-event-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .cec-title {
        font-size: 34px;
    }

    .cec-meta,
    .cec-buttons {
        justify-content: center;
    }
}
