/* ============================================
   TattooCon Contest — CSS
   PixelPanther | https://pixelpanther.eu

   Diese Datei wird über das WordPress Backend
   unter TC Contest → CSS Einstellungen
   bearbeitet und gespeichert.
   ============================================ */

/* ── SECTION ── */
.tcc-section {
    background: #E0E0E0;
    padding: 48px 36px;
}

/* ── GRID ──
   border-radius + overflow:hidden sorgen dafür,
   dass nur die 4 Ecken des Grids abgerundet sind,
   nicht jede Box einzeln.
   ───────────────────────────────────────────── */
.tcc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    border-radius: 5px;
    overflow: hidden;
}

/* ── BOX ── */
.tcc-box {
    background: #3354ff;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.15s;
}

.tcc-box:hover {
    background: #2240dd;
}

/* ── LABEL ── */
.tcc-label {
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ── PFEIL ── */
.tcc-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
    margin-left: 12px;
    transition: color 0.15s;
}

.tcc-box:hover .tcc-arrow {
    color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .tcc-section {
        padding: 32px 20px;
    }
    .tcc-grid {
        grid-template-columns: 1fr;
    }
}
