/* ── Spotlight Section ── */
.spotlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 36px;
}

.spotlight-card {
    width: calc(33.333% - 16px);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.spotlight-card:hover {
    box-shadow: 0 6px 24px rgba(197, 82, 160, 0.18);
    transform: translateY(-4px);
    color: inherit;
    text-decoration: none;
}

/* Fixed image area */
.spotlight-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-img img {
    transform: scale(1.04);
}

/* Text body */
.spotlight-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.spotlight-body h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight-link {
    font-size: 13px;
    font-weight: 600;
    color: #c552a0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.spotlight-link i {
    transition: transform 0.2s ease;
}

.spotlight-card:hover .spotlight-link i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .spotlight-card { width: calc(50% - 12px); }
}

@media (max-width: 575px) {
    .spotlight-card { width: 100%; }
    .spotlight-img  { height: 200px; }
}

/* ── Dark Mode ── */
.theme-dark .spotlight-section {
    background: #141414;
}

.theme-dark .spotlight-card {
    background: #1e1e1e;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.theme-dark .spotlight-card:hover {
    box-shadow: 0 6px 24px rgba(197, 82, 160, 0.22);
}

.theme-dark .spotlight-body h5 {
    color: #e8e8e8;
}

.theme-dark .spotlight-link {
    color: #e58cc3;
}
