/* ============================================
   networking-2026.css
   Used by: why-2026-is-the-year-networking-becomes-your-most-valuable-asset.html
   ============================================ */

/* === DETAILS TABLE (Article at a Glance) === */
.details-table-wrapper {
    margin: 40px 0;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
}
.details-table {
    width: 100%;
    border-collapse: collapse;
}
.details-table thead th {
    background: linear-gradient(145deg, #0a0a2e, #000074);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 20px;
    text-align: center;
}
.details-table tbody tr {
    border-bottom: 1px solid #1e1e1e;
}
.details-table tbody tr:last-child {
    border-bottom: none;
}
.details-table tbody th {
    padding: 16px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #245AF6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 140px;
    vertical-align: top;
    background: rgba(36,90,246,0.04);
    white-space: nowrap;
}
.details-table tbody td {
    padding: 16px 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* === THREE STORMS === */
.storms-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    border-radius: 15px;
}
.storm-card {
    background: linear-gradient(145deg, #111, #06083e);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.storm-card:hover {
    border-color: #245AF6;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(36,90,246,0.2);
}
.storm-icon {
    font-size: 2.5rem;
    color: #245AF6;
    margin-bottom: 15px;
    display: block;
}
.storm-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
    display: block;
}
.storm-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}
.storm-desc {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.6;
}

/* === AI VS HUMAN BARS === */
.avh-wrapper {
    margin: 50px 0;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    border-radius: 15px;
}
.avh-title {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
}
.avh-section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin: 25px 0 12px 195px;
    display: block;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}
.avh-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.avh-label {
    width: 180px;
    font-size: 0.8rem;
    color: #aaa;
    flex-shrink: 0;
    text-align: right;
}
.avh-track {
    flex: 1;
    height: 14px;
    background: #111;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #1e1e1e;
}
.avh-fill {
    height: 100%;
    border-radius: 7px;
    width: 0;
    animation: avhGrow 1.4s ease-out forwards;
}
@keyframes avhGrow {
    from { width: 0; }
    to   { width: var(--target-w); }
}
.avh-fill--dark    { background: #252525; }
.avh-fill--mid     { background: #2a2a40; }
.avh-fill--warm    { background: linear-gradient(90deg, #1a3a8f, #245AF6); }
.avh-fill--strong  { background: linear-gradient(90deg, #245AF6, #5d8aff); }
.avh-fill--best    { background: linear-gradient(90deg, #245AF6, #00d4ff); }
.avh-value {
    width: 110px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #aaa;
    flex-shrink: 0;
    white-space: nowrap;
}
.avh-value--muted  { color: #444; }
.avh-value--normal { color: #888; }
.avh-value--bright { color: #fff; }
.avh-value--best   { color: #00d4ff; }

/* === COST GRID === */
.cost-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 50px 0;
    padding: 35px 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    border-radius: 15px;
    text-align: center;
}
.cost-title-row {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}
.cost-card {
    background: linear-gradient(145deg, #111, #06083e);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}
.cost-card:hover {
    border-color: #245AF6;
    transform: translateY(-3px);
}
.cost-card--highlight {
    border-color: #245AF6;
    background: linear-gradient(145deg, #0a0a2e, #000074);
    box-shadow: 0 0 20px rgba(36,90,246,0.2);
}
.cost-channel {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}
.cost-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.cost-card--highlight .cost-value { color: #245AF6; }
.cost-sub {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
}
.cost-card--highlight .cost-sub { color: #5d8aff; }

/* === FEATURES GRID === */
.n26-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}
.n26-feat-card {
    padding: 30px 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.n26-feat-card:hover {
    border-color: #245AF6;
    background: rgba(36,90,246,0.05);
    transform: translateY(-3px);
}
.n26-feat-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(36,90,246,0.3);
    display: block;
    margin-bottom: 10px;
    font-family: monospace;
}
.n26-feat-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}
.n26-feat-desc {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.6;
}

/* === TRUST COMPOUND CHART === */
.compound-wrapper {
    margin: 50px 0;
    padding: 40px 30px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    border-radius: 15px;
    text-align: center;
}
.compound-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
}
.timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    height: 240px;
    gap: 8px;
    padding: 0 10px;
}
.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.tl-bar {
    width: 100%;
    background: linear-gradient(145deg, #111, #06083e);
    border: 1px solid #333;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
    transition: all 0.3s ease;
}
.tl-bar:hover {
    border-color: #245AF6;
    box-shadow: 0 0 15px rgba(36,90,246,0.2);
}
.tl-val {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    max-width: 100%;
    padding: 0 3px;
}
.tl-label {
    font-size: 0.6rem;
    color: #888;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.compound-subtitle {
    font-size: 0.8rem;
    color: #555;
    margin-top: 20px;
    font-style: italic;
}

/* === CTA BOX === */
.n26-cta-box {
    margin: 50px 0;
    padding: 40px 35px;
    background: linear-gradient(145deg, #0a0a2e, #000074);
    border: 1px solid #245AF6;
    border-radius: 15px;
    text-align: center;
}
.n26-cta-icon {
    font-size: 2.5rem;
    color: #245AF6;
    margin-bottom: 20px;
    display: block;
}
.n26-cta-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}
.n26-cta-text {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
    .storms-wrapper          { grid-template-columns: 1fr; }
    .cost-grid               { grid-template-columns: repeat(2, 1fr); }
    .n26-features-grid       { grid-template-columns: 1fr; }
    .timeline                { grid-template-columns: repeat(4, 1fr); height: auto; }
    .tl-item:nth-child(5),
    .tl-item:nth-child(6),
    .tl-item:nth-child(7)    { display: none; }
    .avh-label               { width: 110px; font-size: 0.7rem; }
    .avh-value               { width: 70px; font-size: 0.7rem; }
    .avh-section-label       { margin-left: 0; }
    .details-table tbody th  { white-space: normal; width: 90px; }
}
