/* ==========================================================================
   PROMOTION COMPONENT STYLES
   Reusable promotion box for Omega Project Management
   ========================================================================== */

/* Reset for promo component */
.promo * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.promo-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 2px;
}

/* Header with logo and brand */
.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Circular logo container */
.promo-logo {
    width: 36px;
    height: 36px;
    background: #3296a5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Logo text (Ω symbol) */
.promo-logo-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Brand name */
.promo-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: #3296a5;
    white-space: nowrap;
}

/* Content area with description */
.promo-content {
    font-size: 1rem;
    color: black;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* Content typography */
.promo-content p {
    margin-bottom: 0.5rem;
}

.promo-tagline {
    font-size: 1.25rem;
    color: #3296a5;
    font-weight: 600;
}

.promo-content strong {
    color: #1F2937;
}

.promo-content ul {
    margin: 0;
    padding-left: 1rem;
}

.promo-content li {
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
}

.promo-content li:last-child {
    margin-bottom: 0;
}

/* CTA container */
.promo-cta {
    text-align: left;
}

/* CTA button */
.promo-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #3296a5;
    color: white;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.promo-btn:hover {
    background: #26cfe9;
    color: white;
}

/* ==========================================================================
   MOBILE RESPONSIVE STYLES (640px and below)
   ========================================================================== */
@media (max-width: 640px) {
    /* Compact promo box for mobile */
    .promo-box {
        margin-top: 1rem;
        padding: 0.875rem;
    }

    /* Tighter header spacing */
    .promo-header {
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }

    /* Smaller logo */
    .promo-logo {
        width: 32px;
        height: 32px;
    }

    .promo-logo-text {
        font-size: 0.875rem;
    }

    /* Smaller brand text */
    .promo-brand {
        font-size: 0.875rem;
    }

    /* Compact content */
    .promo-content {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .promo-tagline {
        font-size: 0.875rem;
    }

    .promo-content li {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    /* Smaller button */
    .promo-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
}
