/* ==========================================================================
   Separator Suite Page Styles
   Extends calculators.css for separator-specific components
   ========================================================================== */

/* ==========================================================================
   Feature Card Enhancements - Keep inline row layout with extra info
   ========================================================================== */

/* Card content wrapper - allows flex to work in row */
.features .feature-card .card-content {
    flex: 1;
    min-width: 0;
}

/* Nested h3 and p inside card-content */
.features .feature-card .card-content h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    line-height: 1.3;
    color: var(--dark);
}

.features .feature-card .card-content p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--dark-600);
}

/* Card standards subtitle - compact under title */
.card-standards {
    font-size: 0.6875rem;
    color: #64748b;
    display: block;
    margin-top: 0;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* Feature tags - inline below description */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.feature-tag {
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.125rem 0.4rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 100px;
    white-space: nowrap;
}

.feature-tag.primary {
    background: #dbeafe;
    color: #1d4ed8;
}

/* ==========================================================================
   Wizard Callout - Inline card style for CTAs
   ========================================================================== */
.wizard-callout {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    padding: 0 var(--spacing-lg);
}

.wizard-callout-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.wizard-callout-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.wizard-callout-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.wizard-callout-icon svg {
    width: 24px;
    height: 24px;
}

.wizard-callout-content {
    flex: 1;
}

.wizard-callout-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 0.125rem 0;
}

.wizard-callout-content p {
    font-size: 0.8125rem;
    color: #3b82f6;
    margin: 0;
}

.wizard-callout-arrow {
    color: #3b82f6;
    flex-shrink: 0;
}

.wizard-callout-arrow svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Compressor Station Selection Cards
   ========================================================================== */
.compressor-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.compressor-card {
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.compressor-card.suction {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
}

.compressor-card.interstage {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fcd34d;
}

.compressor-card.discharge {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border: 1px solid #a78bfa;
}

.compressor-card h4 {
    font-size: 0.9375rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compressor-card.suction h4 { color: #166534; }
.compressor-card.interstage h4 { color: #92400e; }
.compressor-card.discharge h4 { color: #5b21b6; }

.compressor-badge {
    padding: 0.1875rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
}

.compressor-card.suction .compressor-badge { background: #22c55e; }
.compressor-card.interstage .compressor-badge { background: #f59e0b; }
.compressor-card.discharge .compressor-badge { background: #8b5cf6; }

.compressor-card ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.compressor-card.suction ul { color: #166534; }
.compressor-card.interstage ul { color: #92400e; }
.compressor-card.discharge ul { color: #5b21b6; }

.compressor-card a {
    font-weight: 500;
    text-decoration: none;
}

.compressor-card.suction a { color: #15803d; }
.compressor-card.interstage a { color: #b45309; }
.compressor-card.discharge a { color: #7c3aed; }

.compressor-card .note {
    font-size: 0.75rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.7;
}

/* ==========================================================================
   Fundamentals Section - Compact card grid
   ========================================================================== */
.fundamentals-section {
    padding: 1.5rem 0;
    background: white;
}

.fundamentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.fundamentals-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.fundamentals-card:hover {
    background: #f1f5f9;
    border-color: #3b82f6;
}

.fundamentals-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.375rem 0;
}

.fundamentals-card p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .wizard-callout-card {
        flex-direction: column;
        text-align: center;
    }

    .wizard-callout-arrow {
        display: none;
    }

    .compressor-selection-grid {
        grid-template-columns: 1fr;
    }
}
