.sidebar-promo-container {
    display: none;
    margin-top: 40px;
}

@media screen and (min-width: 1200px) {
    .sidebar-promo-container {
        display: block;
    }
}

.sidebar-promo-card {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.sidebar-promo-card:hover {
    box-shadow: 0 4px 8px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    transform: translateY(-2px);
    border-color: #dadce0;
}

.sidebar-promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-promo-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #5f6368;
    letter-spacing: 0.8px;
}

.sidebar-promo-icon {
    font-size: 18px;
    color: #1a73e8;
}

.sidebar-promo-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.sidebar-promo-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #5f6368;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.sidebar-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    transition: gap 0.2s;
}

.sidebar-promo-cta:hover {
    gap: 8px;
}

.sidebar-promo-cta .cta-arrow {
    font-size: 16px;
}