/* ────────────────────────────────────────────────
   Stock Information – Premium & FantasyBlox-Matched
───────────────────────────────────────────────── */

.stock-info-section {
    width: 92%;
    max-width: 1140px;
    margin: clamp(60px, 9vw, 110px) auto clamp(50px, 8vw, 90px);
}

.stock-info-title {
    font-size: 40px;
    font-weight: 800;
    color: #002f7a;
    text-align: center;
    margin-bottom: clamp(40px, 7vw, 70px);
    letter-spacing: -0.4px;
    position: relative;
}

.stock-info-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 18vw, 160px);
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

/* Grid – matches your flex/centered style */
.stock-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: clamp(24px, 5vw, 40px);
}

/* Card – matches .ts-section & calculator cards */
.stock-info-card {
    background: #f9fbff;
    border-radius: 16px;
    padding: clamp(24px, 5vw, 36px) clamp(26px, 6vw, 40px);
    border-left: 6px solid #8ab6ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stock-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.stock-info-card h3 {
    font-size: clamp(24px, 5.5vw, 30px);
    font-weight: 700;
    color: #002f7a;
    margin-bottom: 16px;
    border-bottom: 2px solid #8ab6ff;
    display: inline-block;
    padding-bottom: 6px;
}

.stock-info-card p {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.65;
    color: #333;
    margin-bottom: 12px;
}

/* Lists – clean & consistent */
.stock-info-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    font-size: clamp(16px, 4vw, 18px);
    color: #2d3748;
    line-height: 1.7;
}

.stock-info-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: clamp(32px, 6vw, 40px);
}

/* Checkmark for tips – matches your safety lists */
.check-list li::before {
    content: "✔";
    color: #002f7a;
    position: absolute;
    left: 4px;
    top: 2px;
    font-weight: bold;
    font-size: clamp(18px, 4.5vw, 20px);
}

/* Warning & Tip accents – matches .note & .example */
.warning-card {
    background: #fff5f5;
    border-left: 6px solid #ef4444;
}

.tip-card {
    background: #e8f2ff;
    border-left: 6px solid #60a5fa;
}

/* Full-width important warning */
.big-warning {
    grid-column: 1 / -1;
    background: #fff5f5;
    border-left: 6px solid #dc2626;
}

/* Timezone section – refined but fits your style */
.timezone-section {
    margin: clamp(50px, 9vw, 90px) 0;
    text-align: center;
}

.timezone-section h3 {
    font-size: clamp(26px, 6vw, 34px);
    font-weight: 700;
    color: #002f7a;
    margin-bottom: 20px;
}

.timezone-section p {
    font-size: clamp(16px, 4vw, 18px);
    color: #555;
    margin-bottom: 28px;
}

.timezone-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.timezone-table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(15px, 3.8vw, 17px);
    min-width: 700px;
}

.timezone-table th,
.timezone-table td {
    padding: clamp(12px, 3vw, 16px) 18px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.timezone-table th {
    background: #eff6ff;
    color: #002f7a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.92em;
    letter-spacing: 0.6px;
}

.timezone-table td {
    color: #333;
}

.timezone-table tr:last-child td {
    border-bottom: none;
}

/* Small note text */
.small-note {
    font-size: clamp(14.5px, 3.6vw, 16px);
    color: #64748b;
    margin-top: 16px;
    font-style: italic;
    display: block;
}

/* Responsive – smooth mobile experience */
@media (max-width: 900px) {
    .stock-info-grid {
        grid-template-columns: 1fr;
    }
    .stock-info-card {
        padding: clamp(22px, 6vw, 32px) clamp(24px, 6vw, 36px);
    }
}

@media (max-width: 600px) {
    .stock-info-title {
        font-size: clamp(28px, 9vw, 38px);
    }
    .timezone-table th,
    .timezone-table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}