.ppc-date-section {
    padding: 50px 20px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 35%),
        linear-gradient(135deg, #f8fafc 0%, #edf7f1 100%);
    font-family: inherit;
}

.ppc-date-section * {
    box-sizing: border-box;
}

.ppc-date-container {
    max-width: 1120px;
    margin: 0 auto;
}

.ppc-date-heading {
    text-align: center;
    margin-bottom: 28px;
}

.ppc-date-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(18, 53, 36, 0.08);
    color: #123524;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.ppc-date-heading h2 {
    margin: 0;
    font-size: clamp(28px,4vw,42px);
    font-weight: 900;
    color: #123524;
}

.ppc-date-heading p {
    margin: 14px 0 0;
    font-size: 17px;
    color: #5f6f67;
}

.ppc-date-timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.ppc-date-timeline::before {
    content: "";
    position: absolute;
    left: 180px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #d4af37, rgba(18, 53, 36, 0.18));
}

.ppc-date-item {
    position: relative;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 22px;
    align-items: stretch;
}

.ppc-date-item::before {
    content: "";
    position: absolute;
    left: 172px;
    top: 28px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #123524;
    z-index: 2;
}

.ppc-date-badge {
    padding: 18px 16px;
    border-radius: 18px;
    background: #123524;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    box-shadow: 0 14px 30px rgba(18, 53, 36, 0.18);
}

.ppc-date-content {
    padding: 12px 14px;
    border: 1.5px solid rgba(18, 53, 36, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 18px rgba(15, 40, 28, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ppc-date-content:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 53, 36, 0.35);
    box-shadow: 0 22px 45px rgba(15, 40, 28, 0.13);
}

.ppc-date-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 850;
    color: #123524;
}

.ppc-date-content p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #647067;
    line-height: 1.55;
}

.ppc-date-content strong {
    color: #b8860b;
}

/* Special Levels */
.ppc-date-item.highlight .ppc-date-badge {
    background: linear-gradient(135deg, #b8860b, #d4af37);
}

.ppc-date-item.highlight::before {
    border-color: #d4af37;
}

.ppc-date-item.early .ppc-date-badge {
    background: linear-gradient(135deg, #1f6f4a, #123524);
}

.ppc-date-item.event .ppc-date-badge {
    background: linear-gradient(135deg, #25694a, #123524);
}

.ppc-date-item.main-event .ppc-date-badge {
    background: linear-gradient(135deg, #d4af37, #123524);
    font-size: 17px;
}

.ppc-date-item.main-event .ppc-date-content {
    border-color: rgba(212, 175, 55, 0.75);
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.ppc-date-item.main-event .ppc-date-content h3 {
    font-size: 22px;
    color: #b8860b;
}

.ppc-date-item.final .ppc-date-badge {
    background: linear-gradient(135deg, #123524, #445d48);
}

/* Tablet */
@media (max-width: 900px) {
    .ppc-date-timeline::before {
        left: 24px;
    }

    .ppc-date-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 52px;
    }

    .ppc-date-item::before {
        left: 16px;
        top: 24px;
    }

    .ppc-date-badge {
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ppc-date-section {
        padding: 55px 14px;
    }

    .ppc-date-heading {
        margin-bottom: 36px;
    }

    .ppc-date-heading h2 {
        font-size: 36px;
    }

    .ppc-date-heading p {
        font-size: 15px;
    }

    .ppc-date-content {
        padding: 20px;
        border-radius: 20px;
    }

    .ppc-date-content h3 {
        font-size: 19px;
    }

    .ppc-date-content p {
        font-size: 14.5px;
    }

    .ppc-date-badge {
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
    }

    .ppc-date-item.main-event .ppc-date-content h3 {
        font-size: 24px;
    }
}