/* ================================
   COMPETITIONS GRID
================================ */

.competition-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .competition-cards {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .competition-cards {
        grid-template-columns: 1fr;
    }
}
/* ================================
   PRIZE BOX
================================ */

.prize-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Main prize pool */
.prize-box strong {
    color: #063843;
}

/* Divider */
.prize-box hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* Prize list */
.prize-box p {
    font-size: 0.95rem;
}

/* Highlight first prize */
.prize-box p:first-of-type {
    font-size: 1rem;
    font-weight: bold;
}
/* ================================
   SPOTS REMAINING
================================ */

.spots-remaining {
    font-size: 0.9rem;
    font-weight: bold;
    color: #c62828;
    margin-top: 4px;
}
/* ================================
   FINAL SPACING POLISH
================================ */

.competition-card {
    margin-bottom: 30px; /* Add space below each competition card */
}

.prize-box {
    margin-top: 15px; /* Add space above the prize box */
}

.competition-card h3 {
    margin-bottom: 12px; /* Consistent spacing for card titles */
}

/* Minor tweaks for buttons and cards */
.cta-button {
    margin-top: 15px; /* Add some space above buttons */
}
