.tsk-schedule {
    --tsk-bg: #0d1430;
    --tsk-bg-soft: rgba(18, 25, 54, .68);
    --tsk-line: rgba(199, 150, 255, .22);
    --tsk-text: #f8f1ff;
    --tsk-muted: #aab0c7;
    --tsk-accent: #d58bf0;
    --tsk-accent-2: #a773ff;
    --tsk-button-bg: rgba(32, 23, 54, .38);
    --tsk-button-text: #ffd6ff;
    --tsk-button-border: #d58bf0;
    color: var(--tsk-text);
    font-family: inherit;
    overflow: hidden;
    padding: clamp(56px, 7vw, 84px) 18px;
    position: relative;
    background:
        repeating-linear-gradient(60deg, transparent 0 42px, rgba(255, 255, 255, .035) 42px 44px),
        repeating-linear-gradient(120deg, transparent 0 42px, rgba(255, 255, 255, .035) 42px 44px),
        var(--tsk-bg);
}

.tsk-schedule *,
.tsk-schedule *::before,
.tsk-schedule *::after {
    box-sizing: border-box;
}

.tsk-schedule__inner {
    margin: 0 auto;
    max-width: 950px;
}

.tsk-schedule__heading {
    margin: 0 auto 28px;
    max-width: 720px;
    text-align: center;
}

.tsk-schedule__eyebrow {
    align-items: center;
    color: var(--tsk-accent-2);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 12px;
    justify-content: center;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.tsk-schedule__eyebrow > span {
    background: linear-gradient(90deg, transparent, var(--tsk-accent-2));
    display: block;
    height: 1px;
    width: 80px;
}

.tsk-schedule__eyebrow > span:last-child {
    background: linear-gradient(90deg, var(--tsk-accent-2), transparent);
}

.tsk-schedule svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}

.tsk-schedule__eyebrow svg {
    fill: rgba(167, 115, 255, .2);
    height: 23px;
    width: 23px;
}

.tsk-schedule__heading h2 {
    color: var(--tsk-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 18px;
}

.tsk-schedule__heading p {
    color: var(--tsk-muted);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 620px;
}

.tsk-schedule__tabs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 0 22px;
}

.tsk-schedule__tabs button {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--tsk-muted);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    gap: 9px;
    min-height: 44px;
    padding: 10px 16px;
    text-transform: uppercase;
    transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.tsk-schedule__tabs button.is-active,
.tsk-schedule__tabs button:hover {
    border-color: rgba(213, 139, 240, .78);
    box-shadow: 0 0 22px rgba(213, 139, 240, .12);
    color: #ffd6ff;
}

.tsk-schedule__tabs svg {
    color: var(--tsk-accent-2);
}

.tsk-schedule__list {
    display: grid;
    gap: 8px;
}

.tsk-schedule__item {
    align-items: center;
    background: var(--tsk-bg-soft);
    border: 1px solid var(--tsk-line);
    border-radius: 8px;
    box-shadow: inset 0 0 28px rgba(167, 115, 255, .04);
    display: grid;
    gap: 26px;
    grid-template-columns: 160px 1fr auto;
    min-height: 90px;
    padding: 12px 28px;
    transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.tsk-schedule__item[hidden] {
    display: none;
}

.tsk-schedule__item:hover {
    border-color: rgba(213, 139, 240, .52);
    transform: translateY(-1px);
}

.tsk-schedule__date {
    align-items: center;
    border-right: 1px solid var(--tsk-line);
    color: #efaeed;
    display: grid;
    gap: 18px;
    grid-template-columns: 36px 1fr;
    min-height: 58px;
    padding-right: 22px;
}

.tsk-schedule__date svg {
    height: 34px;
    width: 34px;
}

.tsk-schedule__date strong {
    color: #e092ec;
    display: block;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.tsk-schedule__date span {
    color: var(--tsk-muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

.tsk-schedule__content > span {
    color: var(--tsk-accent);
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.tsk-schedule__content h3 {
    color: var(--tsk-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 7px;
}

.tsk-schedule__content p {
    align-items: center;
    color: var(--tsk-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 7px;
    margin: 0;
}

.tsk-schedule__content p svg {
    color: var(--tsk-accent);
    height: 15px;
    width: 15px;
}

.tsk-schedule__actions {
    align-items: center;
    display: flex;
    gap: 22px;
}

.tsk-schedule__signup,
.tsk-schedule__calendar {
    align-items: center;
    background: var(--tsk-button-bg);
    border: 1px solid var(--tsk-button-border);
    border-radius: 5px;
    color: var(--tsk-button-text);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    min-height: 38px;
    padding: 9px 21px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    white-space: nowrap;
}

.tsk-schedule__signup:hover,
.tsk-schedule__calendar:hover {
    background: rgba(213, 139, 240, .16);
    box-shadow: 0 0 24px rgba(213, 139, 240, .18);
    color: #fff;
    transform: translateY(-1px);
}

.tsk-schedule__footer {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.tsk-schedule__calendar {
    gap: 9px;
    min-height: 38px;
}

.tsk-schedule__calendar svg {
    height: 17px;
    width: 17px;
}

@media (max-width: 820px) {
    .tsk-schedule__item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .tsk-schedule__date {
        border-right: 0;
        border-bottom: 1px solid var(--tsk-line);
        padding: 0 0 16px;
    }

    .tsk-schedule__actions {
        justify-content: space-between;
    }
}

@media (max-width: 560px) {
    .tsk-schedule {
        padding: 46px 14px;
    }

    .tsk-schedule__eyebrow {
        gap: 8px;
        letter-spacing: 2px;
    }

    .tsk-schedule__eyebrow > span {
        width: 42px;
    }

    .tsk-schedule__tabs {
        gap: 8px;
    }

    .tsk-schedule__tabs button {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        min-width: 138px;
        padding-inline: 10px;
    }

    .tsk-schedule__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .tsk-schedule__details {
        justify-content: center;
    }
}
