.lpp-workshops {
    display: grid;
    gap: 24px;
}

.lpp-calendar {
    border: 1px solid #ded6c9;
    border-radius: 8px;
    overflow: hidden;
}

.lpp-calendar-header {
    align-items: end;
    background: #f7f1e7;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 18px 20px;
}

.lpp-calendar-header h2 {
    color: #2d2520;
    font-size: 28px;
    line-height: 1.1;
    margin: 0;
}

.lpp-calendar-header p {
    color: #63714f;
    font-weight: 800;
    margin: 0;
}

.lpp-calendar-nav {
    display: inline-flex;
    gap: 8px;
}

.lpp-calendar-nav a {
    align-items: center;
    background: #63714f;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-size: 22px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    width: 42px;
}

.lpp-calendar-nav a:hover,
.lpp-calendar-nav a:focus {
    background: #4f5c3d;
    color: #fff;
}

.lpp-calendar-weekdays,
.lpp-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.lpp-calendar-weekdays span {
    background: #63714f;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 8px;
    text-align: center;
}

.lpp-calendar-day {
    background: #fffdf8;
    border-right: 1px solid #e5dccf;
    border-top: 1px solid #e5dccf;
    min-height: 120px;
    padding: 8px;
}

.lpp-calendar-day:nth-child(7n) {
    border-right: 0;
}

.lpp-calendar-day-empty {
    background: #faf6ed;
}

.lpp-calendar-number {
    color: #2d2520;
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.lpp-calendar-event {
    background: #eef3e8;
    border: 1px solid #d6dfcc;
    border-radius: 6px;
    color: #2d2520;
    display: grid;
    gap: 2px;
    line-height: 1.2;
    margin-top: 6px;
    padding: 8px;
    text-decoration: none;
}

.lpp-calendar-event strong {
    font-size: 13px;
}

.lpp-calendar-event span {
    color: #63714f;
    font-size: 12px;
    font-weight: 800;
}

.lpp-calendar-event:hover,
.lpp-calendar-event:focus {
    background: #e2ead9;
    color: #2d2520;
}

.lpp-calendar-event-past {
    background: #f1eee8;
    color: #6f685f;
    opacity: 0.7;
}

.lpp-calendar-event-soldout {
    background: #fdecec;
    border-color: #f3c8c8;
}

.lpp-calendar-event-late {
    background: #fff8e8;
    border-color: #f0dbac;
}

.lpp-alert {
    border-radius: 6px;
    font-weight: 700;
    padding: 14px 16px;
}

.lpp-alert-success {
    background: #e7f5ed;
    color: #17643a;
}

.lpp-alert-error {
    background: #fdecec;
    color: #8a1f1f;
}

.lpp-alert p {
    margin: 0;
}

.lpp-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.lpp-cart-actions a {
    background: #63714f;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    padding: 8px 12px;
    text-decoration: none;
}

.lpp-cart-actions a:hover,
.lpp-cart-actions a:focus {
    background: #4f5c3d;
    color: #fff;
}

.lpp-session {
    border: 1px solid #ded6c9;
    border-radius: 8px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    padding: 24px;
}

.lpp-session-past {
    opacity: 0.58;
}

.lpp-status-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 12px;
    padding: 6px 10px;
    text-transform: uppercase;
}

.lpp-status-past {
    background: #ece7dd;
    color: #665d52;
}

.lpp-status-soldout {
    background: #fdecec;
    color: #8a1f1f;
}

.lpp-status-late {
    background: #fff4d9;
    color: #735014;
}

.lpp-session-media {
    grid-column: 1 / -1;
}

.lpp-session-image {
    border-radius: 8px;
    display: block;
    max-height: 340px;
    object-fit: cover;
    width: 100%;
}

.lpp-session h3 {
    color: #2d2520;
    font-size: 28px;
    line-height: 1.15;
    margin: 4px 0 12px;
}

.lpp-date {
    color: #63714f;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
}

.lpp-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.lpp-facts span {
    background: #f7f1e7;
    border: 1px solid #eadfce;
    border-radius: 999px;
    color: #3b332c;
    font-weight: 700;
    padding: 7px 12px;
}

.lpp-recap {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 8px;
    margin-top: 18px;
    padding: 16px;
}

.lpp-recap h4 {
    color: #2d2520;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.lpp-recap dl {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.lpp-recap dl div {
    min-width: 0;
}

.lpp-recap dt {
    color: #63714f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.lpp-recap dd {
    margin: 2px 0 0;
}

.lpp-recap p {
    margin: 14px 0 0;
}

.lpp-prices {
    color: #4a4038;
    margin: 18px 0 0;
    padding-left: 20px;
}

.lpp-prices li + li {
    margin-top: 5px;
}

.lpp-form {
    display: grid;
    gap: 12px;
}

.lpp-form input,
.lpp-form select,
.lpp-form textarea {
    border: 1px solid #cfc6b8;
    border-radius: 4px;
    box-sizing: border-box;
    font: inherit;
    padding: 11px 12px;
    width: 100%;
}

.lpp-form .lpp-checkbox {
    align-items: flex-start;
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.35;
}

.lpp-form .lpp-checkbox input {
    margin-top: 2px;
    width: auto;
}

.lpp-price-help {
    color: #5f694d;
    font-size: 13px;
    line-height: 1.35;
    min-height: 18px;
}

.lpp-form button {
    background: #63714f;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 46px;
    padding: 11px 18px;
}

.lpp-form button:hover,
.lpp-form button:focus {
    background: #4f5c3d;
}

.lpp-form button:disabled {
    cursor: progress;
    opacity: 0.7;
}

.lpp-form-message {
    border-radius: 6px;
    font-weight: 700;
    padding: 12px;
}

.lpp-form-message p {
    margin: 0;
}

.lpp-form-message-success {
    background: #e7f5ed;
    color: #17643a;
}

.lpp-form-message-error {
    background: #fdecec;
    color: #8a1f1f;
}

.lpp-soldout {
    align-self: start;
    background: #f7f1e7;
    border-radius: 6px;
    font-weight: 800;
    padding: 14px 16px;
    text-align: center;
}

.lpp-policy-summary {
    background: #fff8ed;
    border-left: 4px solid #8b5e34;
    border-radius: 6px;
    margin: 14px 0;
    padding: 12px 14px;
}

.lpp-policy-summary p {
    margin: 6px 0 0;
}

.lpp-policy-compact {
    margin: 18px 0 24px;
}

.lpp-policy-page pre {
    background: #fff8ed;
    border-radius: 6px;
    font-family: inherit;
    line-height: 1.6;
    padding: 18px;
    white-space: pre-wrap;
}

@media (max-width: 800px) {
    .lpp-calendar-header {
        align-items: start;
        display: grid;
    }

    .lpp-calendar-weekdays {
        display: none;
    }

    .lpp-calendar-grid {
        grid-template-columns: 1fr;
    }

    .lpp-calendar-day,
    .lpp-calendar-day:nth-child(7n) {
        border-right: 0;
        min-height: auto;
    }

    .lpp-calendar-day-empty {
        display: none;
    }

    .lpp-recap dl {
        grid-template-columns: 1fr;
    }

    .lpp-session {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}
