/* Santorini Event Request Form (isolated from transfers) */

.st-event-request {
    --st-navy: #122142;
    --st-navy-dark: #15263d;
    --st-red: #d90101;
    --st-red-soft: rgba(200, 16, 46, 0.12);
    --st-text: #1a2f4d;
    --st-text-muted: #7a8699;
    --st-border: #e4e8ee;
    --st-bg: #f4f6f9;
    --st-white: #ffffff;
    --st-radius: 12px;
    --st-radius-lg: 16px;
    --st-shadow: 0 6px 28px rgba(26, 47, 77, 0.12);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--st-text);
    line-height: 1.5;
    max-width: 672px !important;
    margin: 0 auto;
}

.st-event-request *,
.st-event-request *::before,
.st-event-request *::after {
    box-sizing: border-box;
}

.st-event-request__main {
    width: 100%;
}

.st-event-card {
    background: var(--st-white);
    border-radius: var(--st-radius-lg);
    box-shadow: var(--st-shadow);
    border: 1px solid var(--st-border);
    padding: 28px 32px 24px;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}

.st-event-card__accent {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    height: 0.375rem;
    background: linear-gradient(to right, #ef4444 0%, #dc2626 50%, navy 100%);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    width: 100%;
}

/* Stepper */
.st-event-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 34px;
    padding: 0 8px;
}

.st-event-stepper__item {
    display: flex;
    align-items: center;
}

.st-event-stepper__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #98a2b3;
    background: #f2f4f7;
    transition: all 0.2s ease;
}

.st-event-stepper__icon {
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
}

.st-event-stepper__done {
    display: none;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #18a957;
    color: var(--st-white);
    box-shadow: 0 6px 18px rgba(24, 169, 87, 0.2);
}

.st-event-stepper__line {
    width: 28px;
    height: 2px;
    background: var(--st-border);
    margin: 0 2px;
    flex-shrink: 0;
}

.st-event-stepper__item--active .st-event-stepper__pill {
    background: var(--st-red);
    color: var(--st-white);
    box-shadow: 0 4px 14px var(--st-red-soft);
}

.st-event-stepper__item--active .st-event-stepper__icon {
    color: var(--st-white);
}

.st-event-stepper__item--done .st-event-stepper__pill {
    background: #18a957;
    color: var(--st-white);
}

.st-event-stepper__item--done .st-event-stepper__icon {
    display: none;
}

.st-event-stepper__item--done .st-event-stepper__done {
    display: inline-flex;
}

.st-event-stepper__line--done {
    background: #18a957;
}

/* Step header */
.st-event-step__header {
    text-align: center;
    margin-bottom: 28px;
}

.st-event-step__title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: var(--st-navy);
    letter-spacing: -0.02em;
}

.st-event-step__subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--st-text-muted);
}

.st-event-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(200, 16, 46, 0.08);
    color: var(--st-red);
    font-weight: 800;
    font-size: 14px;
}

.st-event-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--st-red);
}

/* Cards grid */
.st-event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto 22px;
    max-width: 640px;
}

@media (min-width: 700px) {
    .st-event-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .st-event-card-radio--other {
        grid-column: 1 / -1;
    }
}

.st-event-card-radio {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 18px 18px;
    border: 2px solid var(--st-border);
    border-radius: 20px;
    background: var(--st-white);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    min-height: 78px;
}

.st-event-card-radio:hover,
.st-event-card-radio:focus {
    background-color: rgba(200, 16, 46, 0.06) !important;
    border-color: var(--st-red) !important;
}

.st-event-card-radio:hover:not(.st-event-card-radio--selected) {
    border-color: #cdd3dc;
    box-shadow: 0 6px 18px rgba(26, 47, 77, 0.08);
}

.st-event-card-radio__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f2f4f7;
    color: #b0b8c4;
    flex-shrink: 0;
}

.st-event-card-radio__title {
    font-size: 14px;
    font-family: 'grift';
    font-weight: 800;
    color: var(--st-navy);
    line-height: 1.2;
}

.st-event-card-radio__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.st-event-card-radio__meta {
    font-size: 12px;
    color: var(--st-text-muted);
    line-height: 1.3;
}

.st-event-card-radio__control {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.st-event-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--st-border);
    border-radius: 999px;
    background: var(--st-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--st-text-muted);
}

.st-event-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transform: scale(0.9);
    transition: background 0.15s;
}

.st-event-card-radio--selected {
    border-color: var(--st-red);
    box-shadow: 0 0 0 1px var(--st-red-soft), 0 10px 30px var(--st-red-soft);
    background: rgba(200, 16, 46, 0.06);
}

.st-event-card-radio--selected .st-event-card-radio__icon {
    background: var(--st-red);
    color: var(--st-white);
}

.st-event-card-radio--selected .st-event-card-radio__title {
    color: var(--st-red);
}

.st-event-card-radio--selected .st-event-radio {
    border-color: var(--st-red);
}

.st-event-card-radio--selected .st-event-radio::after {
    background: var(--st-red);
}

/* Footer (button bottom-right) */
.st-event-step__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
}

.st-event-step__footer--details {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef0f4;
    padding-top: 22px;
    margin-top: 22px;
    gap: 12px 16px;
}

.st-event-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #98a2b3;
    cursor: pointer;
    padding: 8px 0;
    font-family: inherit;
}

.st-event-back:hover {
    color: var(--st-navy);
}

.st-event-disclaimer--details {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin-top: 2px;
}

.st-event-details {
    max-width: 740px;
    margin: 0 auto;
}

.st-event-row--two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

@media (min-width: 700px) {
    .st-event-row--two {
        grid-template-columns: 1fr 1fr;
    }
}

.st-event-field {
    margin-bottom: 18px;
}

.st-event-field__label {
    display: block;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #667085;
    font-family: 'grift';
}

.st-event-field__label--icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.st-event-field__label-ico {
    display: inline-flex;
    color: #98a2b3;
}

.st-event-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: var(--st-white);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.st-event-picker:focus-within {
    border-color: var(--st-red);
    box-shadow: 0 0 0 3px var(--st-red-soft);
}

.st-event-picker__icon {
    display: flex;
    color: var(--st-red);
}

.st-event-picker__input,
.st-event-picker input.flatpickr-input {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    color: var(--st-navy);
    padding: 0;
    min-width: 0;
}

.st-event-picker__input:focus,
.st-event-picker input.flatpickr-input:focus {
    outline: none;
}

.st-event-picker__input::placeholder {
    color: #c5cad3;
    font-weight: 700;
}

.st-event-picker__chev {
    color: #c5cad3;
    font-size: 18px;
    line-height: 1;
}

.st-event-picker--btn {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: var(--st-white);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.st-event-picker--btn:focus {
    outline: none;
}

.st-event-picker__value {
    flex: 1;
    font-size: 14px;
    font-weight: 800;
    color: var(--st-navy);
}

.st-event-picker__value--placeholder {
    color: #c5cad3;
    font-weight: 700;
}

.st-event-time-picker {
    position: relative;
}

.st-event-time-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--st-white);
    border: 1px solid var(--st-border);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(26, 47, 77, 0.15);
    max-height: 320px;
    overflow-y: auto;
    padding: 12px 14px 16px;
}

.st-event-time-period {
    margin-bottom: 14px;
}

.st-event-time-period:last-child {
    margin-bottom: 0;
}

.st-event-time-period__label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--st-text-muted);
}

.st-event-time-period__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--st-text-muted);
    opacity: 0.9;
}

.st-event-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 12px;
}

.st-event-time-slot {
    border: 0;
    background: transparent;
    padding: 6px 4px;
    font-size: 13px;
    font-weight: 800;
    color: var(--st-navy);
    cursor: pointer;
    border-radius: 6px;
    font-family: inherit;
    text-align: center;
}

.st-event-time-slot:hover {
    background: var(--st-bg);
}

.st-event-time-slot--selected {
    background: var(--st-red-soft);
    color: var(--st-red);
}

.st-event-qty {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 14px;
    align-items: center;
}

button.st-event-time-slot:hover {
    background: #f8e2e6 !important;
    color: #d90101;
}

.st-event-qty__btn {
    width: 48px;
    padding: 0 !important;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: #f2f4f7;
    color: var(--st-navy);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
}

.st-event-qty__btn:focus {
    background: #eaecf0 !important;
}

.st-event-qty__btn:hover {
    background: #eaecf0;
}

.st-event-qty__value {
    height: 56px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--st-white);
}

.st-event-qty__num {
    font-size: 20px;
    font-weight: 900;
    color: var(--st-navy);
    min-width: 18px;
    text-align: center;
}

.st-event-qty__input {
    width: 72px;
    border: 0;
    background: transparent;
    font-size: 20px;
    font-weight: 900;
    color: var(--st-navy);
    text-align: center;
    padding: 0;
    outline: none;
    appearance: textfield;
}

.st-event-qty__input::-webkit-outer-spin-button,
.st-event-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.st-event-qty__unit {
    font-size: 13px;
    color: #667085;
    font-weight: 600;
}

.st-event-input,
.st-event-textarea {
    width: 100%;
    padding: 16px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: var(--st-white);
    font-size: 14px;
    font-weight: 700;
    color: var(--st-navy);
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.st-event-input::placeholder,
.st-event-textarea::placeholder {
    color: #c5cad3;
    font-weight: 700;
}

.st-event-input:focus,
.st-event-textarea:focus {
    outline: none;
    border-color: var(--st-red);
    box-shadow: 0 0 0 3px var(--st-red-soft);
}

.st-event-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.st-event-request .flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26, 47, 77, 0.15);
    border: 1px solid var(--st-border);
}

.st-event-request .flatpickr-day.selected,
.st-event-request .flatpickr-day.selected:hover {
    background: var(--st-navy);
    border-color: var(--st-navy);
}

.st-event-disclaimer {
    margin: 0;
    font-size: 12px;
    color: var(--st-text-muted);
    text-align: center;
    max-width: 520px;
    order: 2;
}

.st-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s, transform 0.1s;
    font-family: inherit;
}

.st-event-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.st-event-btn--primary {
    background: var(--st-navy);
    color: var(--st-white);
    min-width: 180px;
    box-shadow: 0 12px 34px rgba(26, 47, 77, 0.25);
}

.st-event-btn--primary:not(:disabled):hover {
    background: var(--st-navy-dark);
}

.st-event-btn__arrow {
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 700px) {
    .st-event-step__footer {
        align-items: flex-end;
    }

    .st-event-disclaimer {
        text-align: center;
        align-self: center;
        max-width: 560px;
    }
}

/* Placeholder panels */
.st-event-placeholder {
    max-width: 640px;
    margin: 0 auto;
    padding: 18px 18px;
    border: 1px dashed #cdd3dc;
    border-radius: 14px;
    background: #fafbfd;
    color: var(--st-text-muted);
    text-align: center;
    font-weight: 600;
}

/* Step 3: Contact */
.st-event-contact {
    max-width: 640px;
    margin: 0 auto;
}

.st-event-field--contact {
    margin-bottom: 18px;
}

.st-event-field__label--contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--st-navy);
    letter-spacing: 0.06em;
}

.st-event-field__label--contact .st-event-field__label-ico {
    color: #98a2b3;
}

.st-event-input--contact {
    padding: 14px 16px;
    border-radius: 14px;
}

.st-event-summary {
    margin: 8px 0 22px;
    padding: 20px 22px;
    background: var(--st-bg);
    border-radius: var(--st-radius-lg);
}

.st-event-summary__title {
    margin: 0 0 16px;
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    color: #667085;
    font-family: 'grift' !important;
    margin-bottom: 8px;
}

.st-event-summary__list {
    margin: 0;
    padding: 0;
}

.st-event-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
}

.st-event-summary__row dt {
    margin: 0;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--st-text-muted);
    font-family: 'grift';
}

.st-event-summary__row dd {
    margin: 0;
    flex: 1 1 auto;
    text-align: right;
    font-size: 14px;
    font-weight: 800;
    color: var(--st-navy);
    line-height: 1.4;
    font-family: 'grift';
}

.st-event-summary__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--st-border);
}

.st-event-summary__price-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--st-navy);
    font-family: 'grift';
}

.st-event-summary__price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--st-red);
    line-height: 1;
    font-family: 'grift';
}

.st-event-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin: 0 0 24px !important;
    padding: 0;
    list-style: none;
}

.st-event-trust__item {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 12px !important;
    margin-bottom: 0 !important;
    font-weight: 600;
    color: var(--st-text-muted);
}

button#st-event-back-contact:hover,
button#st-event-back-contact:focus {
    background-color: transparent;
}

.st-event-trust__icon {
    display: flex;
    color: #b0b8c4;
}

.st-event-alert {
    flex: 1 1 100%;
    margin: 0 0 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.st-event-alert--error {
    background: #fde8ec;
    color: var(--st-red);
    border: 1px solid rgba(200, 16, 46, 0.2);
}

.st-event-step__footer--contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eef0f4;
    padding-top: 22px;
    margin-top: 4px;
    gap: 12px 16px;
}

.st-event-disclaimer--contact {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin-top: 2px;
}

.st-event-btn--submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: #c5cad3;
    color: var(--st-white);
    box-shadow: 0 6px 20px var(--st-red-soft);
    transition: background 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.st-event-btn--submit:not(:disabled) {
    background: var(--st-navy);
    box-shadow: 0 8px 28px rgba(26, 47, 77, 0.28);
}

.st-event-btn--submit:not(:disabled):hover {
    background: var(--st-navy-dark);
}

.st-event-btn--submit:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.st-event-btn--submit.st-event-btn--submitting {
    opacity: 0.85;
    pointer-events: none;
    position: relative;
}

.st-event-btn--submit.st-event-btn--submitting .st-event-btn__arrow {
    opacity: 0;
}

.st-event-btn--submit.st-event-btn--submitting::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--st-white);
    border-radius: 50%;
    animation: st-event-spin 0.7s linear infinite;
}

@keyframes st-event-spin {
    to {
        transform: rotate(360deg);
    }
}

.st-event-success {
    max-width: 480px;
    margin: 48px auto;
    text-align: center;
    padding: 32px 24px;
}

.st-event-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #e8f7ee;
    color: #18a957;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.st-event-success__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--st-navy);
}

.st-event-success__text {
    margin: 0;
    font-size: 14px;
    color: var(--st-text-muted);
    line-height: 1.5;
}

.st-event-request--submitted .st-event-stepper,
.st-event-request--submitted .st-event-step {
    display: none !important;
}

.st-event-request--submitted .st-event-success {
    display: block !important;
}

button#st-event-continue,
button#st-event-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #122142;
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem !important;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 128, 0.2) !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, all 0.2s ease;
    margin-left: auto;
}

button#st-event-continue:disabled,
button#st-event-submit:disabled {
    opacity: 1 !important;
    background: #e5e7eb !important;
    color: #99a1af !important;
    box-shadow: none !important;
}

button#st-event-continue-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #122142;
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem !important;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 128, 0.2) !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, all 0.2s ease;
    margin-left: auto;
}

button#st-event-continue-details:disabled {
    opacity: 1 !important;
    background: #e5e7eb !important;
    color: #99a1af !important;
    box-shadow: none !important;
}

button#st-event-back-details:hover,
button#st-event-back-details:focus {
    background: transparent;
}

.st-event-field input#st-event-venue {
    border-radius: 14px;
    height: 51px;
    border-width: 2px;
}

.st-event-field input#st-event-venue:focus {
    box-shadow: 0 0 0 3px var(--st-red-soft);
}

.st-event-picker {
    position: relative;
    height: 51px;
}

.st-event-picker .st-event-picker__input {
    border-radius: 14px;
    border: 0;
    padding: 0px 0px !important;
    padding-left: 35px !important;
    font-family: 'grift';
    font-size: 16px !important;
    font-weight: 400 !important;
}

.st-event-picker span.st-event-picker__icon {
    position: absolute;
    left: 12px;
}

.st-event-picker:hover,
.st-event-picker--btn:focus {
    background: transparent;
    border-color: #d90101;
}

.st-event-picker span#st-event-time-display {
    padding-left: 30px;
}

.st-event-qty__btn:hover {
    color: #122142;
}

.st-event-qty__input {
    border: 0 !important;
    width: 10% !important;
    padding: 0 !important;
}

.st-event-field input {
    border-radius: 14px;
    height: 51px;
    border-width: 2px;
}

.st-event-field input:focus {
    box-shadow: 0 0 0 3px var(--st-red-soft);
}

.st-event-picker .st-event-picker__input:focus,
.st-event-qty__value input#st-event-guests-input:focus {
    box-shadow: none !important;
}


@media (max-width:767px) {
    .st-event-card {
        padding: 20px !important;
    }

    .st-event-stepper__pill {
        font-size: 0;
        width: fit-content;
        padding: 5px;
        text-align: center;
    }

    .st-event-stepper__pill span.st-event-stepper__label {
        display: none;
    }
}

@media (max-width: 559px) {
    .st-event-summary__row {
        flex-direction: column;
        gap: 4px;
    }

    .st-event-summary__row dd {
        text-align: left;
    }

    .st-event-trust {
        flex-direction: column;
        align-items: center;
    }
}

/* Hidden utility */
[hidden] {
    display: none !important;
}