
    /* Two-Column Layout */
    .event-container {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .event-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: flex-start;
    }

    /* Left Column: Image */
    .event-image-side {
        flex: 1;
        min-width: 300px;
    }

    .featured-image {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        object-fit: cover;
        display: block;
    }

    /* Right Column: Info */
    .event-info-side {
        flex: 1;
        min-width: 300px;
        padding: 20px;
    }

    .event-title-main {
        font-weight: 800;
        color: #2d3436;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    /* Metadata Icons */
    .meta-box {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 30px;
        border-left: 5px solid #b07c08;
    }

    .meta-row {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #636e72;
    }

    .meta-row:last-child { margin-bottom: 0; }

    .meta-row i {
        color: #b07c08;
        margin-right: 15px;
        width: 30px;
        text-align: center;
    }

    .meta-row strong {
        color: #2d3436;
        margin-right: 8px;
    }

    /* Description Area */
    .event-description {
        line-height: 1.8;
        color: #4a4a4a;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .event-wrapper { flex-direction: column; }
        .event-image-side, .event-info-side { flex: none; width: 100%; }
    }