.schedule-grid-item {
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.schedule-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.schedule-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.schedule-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.schedule-card:hover .schedule-img-wrapper img {
    transform: scale(1.05);
}

.schedule-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-title {
    color: #7e4555;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.schedule-link-indicator {
    display: inline-block;
    margin-top: 15px;
    color: #7e4555;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.main-schedule-box {
    background: #fcf8f9;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.main-schedule-img img {
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(126, 69, 85, 0.15);
    max-height: 700px;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    .main-schedule-box {
        padding: 20px;
    }
    .schedule-title {
        font-size: 1.1rem;
    }
}
