/* Tarot catalog — shared layout and card-detail styles */

.tarot-catalog,
.tarot-card-detail {
    color: white;
}

/* Section banner rendered under the global logo on every /tarot* page. */
.tarot-section-banner {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #fff;
    color: #1c1c1c;
    padding: 8px 0;
    margin: 0 -70px 40px;
}

@media only screen and (max-width: 992px) {
    .tarot-section-banner {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.tarot-header {
    text-align: center;
    margin-bottom: 40px;
}

.tarot-header h1 {
    margin-bottom: 20px;
}

.tarot-intro {
    color: #C8C8C8;
}

.tarot-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin-bottom: 30px;
}

.tarot-categories a {
    color: #C8C8C8;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.tarot-categories a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.tarot-search {
    margin-bottom: 30px;
}

.tarot-search input {
    width: 100%;
    padding: 12px 16px;
    background-color: #1c1c1c;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.tarot-search input:focus {
    outline: none;
    border-color: #A7CBD7;
}

.tarot-search input::placeholder {
    color: #8a8a8a;
}

.tarot-search-empty {
    color: #C8C8C8;
    text-align: center;
    margin-top: 30px;
}

.tarot-card-tile.is-hidden,
.tarot-section.is-hidden,
.tarot-categories a.is-hidden {
    display: none;
}

.tarot-section {
    margin-top: 50px;
    scroll-margin-top: 20px;
}

.tarot-section h2 {
    margin-bottom: 20px;
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 8px;
}

.tarot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tarot-card-tile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-decoration: none;
    color: white;
}

.tarot-card-tile:hover {
    color: white;
}

.tarot-card-hero,
.tarot-card-tile {
    perspective: 1200px;
}

.tarot-card-art {
    aspect-ratio: 9 / 16;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: content-box;
    border: 8px solid #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    box-sizing: border-box;
    transform-style: preserve-3d;
    transition: transform 250ms ease, box-shadow 250ms ease;
    will-change: transform;
}

.tarot-card-tile:hover .tarot-card-art {
    box-shadow: 18px 14px 30px rgba(0, 0, 0, 0.55);
    transition: transform 80ms ease-out, box-shadow 250ms ease;
}

.tarot-card-art > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tarot-card-image {
    flex: 0 0 260px;
}

.tarot-card-info {
    flex: 1 1 auto;
    padding: 0 0 0 20px;
}

.tarot-card-name {
    color: #A7CBD7;
    margin-bottom: 6px;
}

.tarot-card-summary {
    color: #C8C8C8;
}

/* Card detail page */

.tarot-breadcrumb {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 25px;
}

.tarot-breadcrumb a {
    color: #bdbdbd;
}

.tarot-breadcrumb span {
    color: white;
}

.tarot-card-hero {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.tarot-card-hero-image {
    width: 100%;
}

.tarot-card-hero-info h1 {
    margin: 12px 0 16px;
}

.tarot-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tarot-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid #3a3a3a;
    border-radius: 999px;
    color: #bdbdbd;
}

.tarot-card-lead {
    color: #d6d6d6;
    margin-bottom: 18px;
}

.tarot-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.tarot-keywords li {
    font-size: 13px;
    padding: 4px 10px;
    background-color: #262626;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    color: #C8C8C8;
}

.tarot-meanings {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.tarot-meaning h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tarot-topics,
.tarot-block,
.tarot-related {
    margin-bottom: 50px;
}

.tarot-topic {
    margin-bottom: 24px;
}

.tarot-topic h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #A7CBD7;
}

.tarot-topic-row {
    margin-bottom: 6px;
    color: #d6d6d6;
}

.tarot-topic-row strong {
    color: white;
    margin-right: 4px;
}

.tarot-prose p {
    margin-bottom: 14px;
    color: #d6d6d6;
}

.tarot-prose p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 740px) {
    .tarot-card-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarot-card-hero-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .tarot-meanings {
        gap: 20px;
    }

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

    .tarot-card-image {
        flex: 0 0 160px;
    }
}
