.stea-event-wrap {
    display: flex;
    flex-direction: column;
}

.stea-event-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    border-bottom: 1px solid #ded8cf;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stea-event-item-media-wrap {
    flex: 0 0 auto;
}

.stea-event-item-media {
    width: 82px;
    height: 82px;
    overflow: hidden;
    background: #101625;
}

.stea-event-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.stea-event-item-content {
    flex: 1 1 auto;
    min-width: 0;
}

.stea-event-item-sub-title {
    margin: 0 0 8px;
    color: #c86f7d;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stea-event-item-title {
    margin: 0 0 10px;
    color: #1e1d1d;
    font-size: 22px;
    line-height: 1.2;
}

.stea-event-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.stea-event-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}

.stea-event-item-meta-single {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.stea-event-item-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8c857f;
    font-size: 14px;
    line-height: 1;
}

.stea-event-item-meta-icon i {
    display: block;
}

.stea-event-item-meta-icon svg {
    width: 14px;
    height: 14px;
}

.stea-event-item-meta-text {
    color: #6d6661;
    font-size: 16px;
    line-height: 1.5;
}

.stea-event-item-price-wrap {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: right;
}

.stea-event-item-action-wrap {
    flex: 0 0 auto;
    margin-left: auto;
}

.stea-event-item-price-sub-heading {
    margin: 0 0 10px;
    color: #d17c87;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stea-event-item-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
}

.stea-event-item-price-value {
    color: #1e1d1d;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.stea-event-item-price-for {
    color: #6d6661;
    font-size: 16px;
    line-height: 1.4;
}

.stea-event-item-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    color: #fff;
    background: #101625;
    border: 1px solid #101625;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
}

.stea-event-item-button:hover {
    color: #101625;
    background: transparent;
}

.stea-event-item-button-disabled {
    cursor: default;
}

@media (max-width: 767px) {
    .stea-event-item {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 20px;
    }

    .stea-event-item-content {
        min-width: 100%;
        order: 3;
    }

    .stea-event-item-price-wrap {
        margin-left: auto;
        text-align: left;
        min-width: auto;
    }

    .stea-event-item-action-wrap {
        margin-left: 0;
    }
}
