.slot-card {
    min-height: 190px;
    border: 2px dashed #e5e7eb;
    transition: .2s ease;
    position: relative;
}

.slot-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 6px 18px rgba(249, 115, 22, .15);
    transform: translateY(-2px);
}

.slot-card.active {
    border-color: var(--primary-orange);
    box-shadow: 0 6px 18px rgba(249, 115, 22, .25);
}

.slot-card.filled {
    border-style: solid;
}

.slot-title {
    letter-spacing: .02em;
}

.slot-anim {
    animation: slotPulse .45s ease;
}

@keyframes slotPulse {
    from {
        transform: scale(.98);
    }

    to {
        transform: scale(1);
    }
}

.badge-score {
    font-size: .75rem;
    min-width: 36px;
}

/* SEO Content Section */
.seo-content {
    line-height: 1.8;
    color: #333;
}

.seo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
    margin-top: 0;
}

.seo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d4a6b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.seo-content strong {
    color: #1e3a5f;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-content h2 {
        font-size: 1.5rem;
    }

    .seo-content h3 {
        font-size: 1.25rem;
    }
}
