/* Grid Container */
.event-cards-grid-af9f66ce {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
}

/* Individual Card Styling */
.event-card-af9f66ce {
    position: relative;
    background-color: #0f0f0f;
    border: 1px solid rgba(227, 176, 75, 0.15);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    box-sizing: border-box;
}

/* Sharp Accent Corners matching Zero Three Event Hire image */
.corner-accent-af9f66ce {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #e3b04b;
    border-style: solid;
    border-width: 0;
    pointer-events: none;
    z-index: 2;
}
.top-left-af9f66ce {
    top: -1px;
    left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
}
.top-right-af9f66ce {
    top: -1px;
    right: -1px;
    border-top-width: 2px;
    border-right-width: 2px;
}
.bottom-left-af9f66ce {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}
.bottom-right-af9f66ce {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

/* Header & Typography */
.card-header-af9f66ce {
    margin-bottom: 20px;
}
.card-subtitle-af9f66ce {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.4);
}
.card-title-af9f66ce {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #e3b04b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description Text */
.card-desc-af9f66ce {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0 0 30px 0;
}

/* Key Features List */
.card-features-af9f66ce {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}
.card-feature-item-af9f66ce {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.feature-bullet-af9f66ce {
    color: #e3b04b;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* CTA Footer & Buttons */
.card-footer-af9f66ce {
    margin-top: auto;
}
.card-btn-af9f66ce {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Solid Button Style */
.card-btn-af9f66ce.btn-solid {
    background-color: #e3b04b;
    color: #0f0f0f;
    border: 2px solid #e3b04b;
}
.card-btn-af9f66ce.btn-solid:hover {
    background-color: transparent;
    color: #e3b04b;
}

/* Outline Button Style */
.card-btn-af9f66ce.btn-outline {
    background-color: transparent;
    color: #8c8c8c;
    border: 1px solid rgba(227, 176, 75, 0.4);
}
.card-btn-af9f66ce.btn-outline:hover {
    border-color: #e3b04b;
    color: #e3b04b;
}

.btn-arrow-af9f66ce {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.card-btn-af9f66ce:hover .btn-arrow-af9f66ce {
    transform: translateX(4px);
}

/* Card Header Badge (Most Popular) */
.card-badge-af9f66ce {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e3b04b;
    color: #0f0f0f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    text-transform: uppercase;
    z-index: 3;
}

/* Responsive Rules */
@media (max-width: 991px) {
    .event-cards-grid-af9f66ce {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .event-cards-grid-af9f66ce {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .event-card-af9f66ce {
        padding: 30px 20px;
        min-height: auto;
    }
}
