/* ====================================
   EVENTS PAGE STYLES
   ==================================== */

.events-section {
    padding: 5rem 2rem;
    background: #fff;
}

.events-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Article */
.event-article {
    border-bottom: 1px solid #e8e5e0;
    padding-bottom: 4rem;
}

.event-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-header {
    margin-bottom: 1.5rem;
}

.event-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.event-category::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--green-light);
    border-radius: 50%;
}

.event-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
}

/* Event Image */
.event-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.event-image-placeholder {
    height: 350px;
    position: relative;
    overflow: hidden;
}

/* Kudus Placeholder */
.kudus-placeholder {
    background: linear-gradient(135deg, #c0392b, #922b21);
}

.kivo-backdrop {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem;
    opacity: 0.3;
}

.kivo-repeat {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    white-space: nowrap;
    overflow: hidden;
}

.kudus-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.kudus-cap { font-size: 4rem; margin-bottom: 0.5rem; }

.kudus-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.kudus-info p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Spice Launch */
.spice-placeholder {
    background: linear-gradient(135deg, #1a5c28, #2d8a3e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spice-visual {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.spice-circle {
    width: 130px; height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.spice-circle small {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.85;
}

.spice-1 { background: #6d4c41; }
.spice-2 { background: #e65100; transform: translateY(-15px); }
.spice-3 { background: #827717; }

/* Event Body */
.event-body,
.event-body-no-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-date {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.event-body p:not(.event-date),
.event-body-no-image p:not(.event-date) {
    color: var(--text-mid);
    font-size: 0.975rem;
    line-height: 1.75;
}

/* ====================================
   RESPONSIVE - EVENTS
   ==================================== */
@media (max-width: 768px) {
    .event-title { font-size: 1.35rem; }
    .spice-visual { gap: 1rem; }
    .spice-circle { width: 100px; height: 100px; font-size: 0.9rem; }
}
