.mag-selections {
    margin-bottom: 6rem;
}

.mag-selections-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.mag-selections-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mag-selections-line {
    height: 2px;
    width: 5rem;
    background-color: var(--mag-c-primary-gold);
}

.mag-selections-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #9ca3af;
    margin-top: 1rem;
}

.mag-selections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .mag-selections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mag-selections-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mag-selection-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .mag-selection-offset {
        margin-top: 3rem;
    }
}

.mag-selection-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.mag-selection-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 3/4;
}

.mag-selection-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 10;
    transition: background-color 0.5s ease;
}

.mag-selection-link:hover .mag-selection-overlay {
    background-color: transparent;
}

.mag-selection-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.7s ease;
}

.mag-selection-link:hover .mag-selection-img {
    transform: scale(1.1);
}

.mag-selection-content {
    text-align: center;
    padding: 0 1rem;
    margin-top: 1.5rem;
}

.mag-selection-cat {
    font-size: 9px;
    font-weight: 700;
    color: var(--mag-c-primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mag-selection-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0.5rem;
    font-style: italic;
    transition: color 0.3s ease;
}

.mag-selection-link:hover .mag-selection-card-title {
    color: var(--mag-c-accent-gold);
}
