/* ============================= */
/* QUOTE */
/* ============================= */

.footer-quote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 14px;
}

.quote-author {
    font-weight: 600;
    color: #ffffff;
}


/* ============================= */
/* Spotlight Module */
/* ============================= */

.spotlight-module {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 20px;
}

.spotlight-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.spotlight-text {
    margin: 0;
    color: #374151;
    font-size: 0.95rem;
}

.spotlight-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 12px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--primary);
    transition: all .2s ease;
}

.spotlight-btn:hover {
    background: var(--primary);
    color: #fff;
}


/* ============================= */
/* Sidebar Promotions */
/* ============================= */

.sidebar-promotions {
    margin-top: 20px;
}

.promotions-title {
    font-weight: 600;
    margin-bottom: 14px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 6px;
}

.promotion-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    transition: box-shadow .2s ease;
}

.promotion-item:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.promotion-image img {
    width: 100%;
    height: auto;
}

.promotion-text h6 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
}

.promotion-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.promotion-link:hover {
    text-decoration: underline;
}