/*--------------------------------------------------------------
# Tarot Cards (Stage 13)
--------------------------------------------------------------*/

/* Card grid on archive */
.aw-tarot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0 30px;
}

.aw-tarot-grid--major {
    grid-template-columns: repeat(4, 1fr);
}

.aw-tarot-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    border: 1px solid #e0d8cf;
    border-radius: var(--aw-border-radius, 8px);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-align: center;
}

.aw-tarot-card-link:hover {
    box-shadow: 0 4px 12px rgba(139, 109, 181, 0.15);
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}

/* Suit colors */
.aw-tarot-card-link--major   { border-left: 3px solid #8b6db5; }
.aw-tarot-card-link--major:hover { border-color: #8b6db5; }
.aw-tarot-card-link--zhezly  { border-left: 3px solid #e74c3c; }
.aw-tarot-card-link--zhezly:hover { border-color: #e74c3c; }
.aw-tarot-card-link--kubky   { border-left: 3px solid #3498db; }
.aw-tarot-card-link--kubky:hover { border-color: #3498db; }
.aw-tarot-card-link--mechi   { border-left: 3px solid #95a5a6; }
.aw-tarot-card-link--mechi:hover { border-color: #95a5a6; }
.aw-tarot-card-link--pentakli { border-left: 3px solid #27ae60; }
.aw-tarot-card-link--pentakli:hover { border-color: #27ae60; }

.aw-tarot-card-number {
    font-size: 1.4em;
    font-weight: 800;
    color: #8b6db5;
    margin-bottom: 4px;
}

.aw-tarot-card-name {
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: 4px;
}

.aw-tarot-card-keywords {
    font-size: 0.7em;
    color: #888;
}

/* Hero section for single card */
.aw-tarot-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 24px;
    margin-bottom: 24px;
    border-radius: var(--aw-border-radius, 8px);
    background: linear-gradient(135deg, #f5f0eb 0%, #ede4f5 100%);
}

.aw-tarot-hero--major   { background: linear-gradient(135deg, #ede4f5 0%, #d1c4e9 100%); }
.aw-tarot-hero--zhezly  { background: linear-gradient(135deg, #fef5f5 0%, #fce4e4 100%); }
.aw-tarot-hero--kubky   { background: linear-gradient(135deg, #f0f5fe 0%, #dce8fc 100%); }
.aw-tarot-hero--mechi   { background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%); }
.aw-tarot-hero--pentakli { background: linear-gradient(135deg, #f0fef5 0%, #d0f0dc 100%); }

.aw-tarot-hero__number {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1;
    color: #5a4a6b;
    min-width: 80px;
    text-align: center;
}

.aw-tarot-hero__info {
    flex: 1;
}

.aw-tarot-hero__name {
    margin: 0 0 4px;
    font-size: 1.5em;
}

.aw-tarot-hero__name-en {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    margin-bottom: 8px;
}

.aw-tarot-hero__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.aw-tarot-hero__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.aw-tarot-keyword {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(139, 109, 181, 0.1);
    border-radius: 12px;
    font-size: 0.8em;
    color: #5a4a6b;
}

/* Upright/Reversed meanings */
.aw-tarot-meanings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.aw-tarot-meaning {
    padding: 16px;
    border-radius: var(--aw-border-radius, 8px);
}

.aw-tarot-meaning h3 {
    margin: 0 0 8px;
    font-size: 1em;
}

.aw-tarot-meaning p {
    margin: 0;
    font-size: 0.9em;
}

.aw-tarot-meaning--upright {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
}

.aw-tarot-meaning--reversed {
    background: #fce4ec;
    border-left: 3px solid #e91e63;
}

/* Responsive */
@media (max-width: 768px) {
    .aw-tarot-grid,
    .aw-tarot-grid--major {
        grid-template-columns: repeat(3, 1fr);
    }

    .aw-tarot-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .aw-tarot-hero__meta {
        justify-content: center;
    }

    .aw-tarot-hero__keywords {
        justify-content: center;
    }

    .aw-tarot-meanings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .aw-tarot-grid,
    .aw-tarot-grid--major {
        grid-template-columns: repeat(2, 1fr);
    }
}

