/*
   FILE: static/css/highlight-new.css
   SECTION: Highlight / Features
*/

/* --- Section Container --- */
.w360-highlight-section {
    padding: 80px 0;
    background-color: #fff; /* Clean white background */
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* --- Global Header (Professional-Grade Tools) --- */
.w360-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.w360-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0B1C3E; /* Dark Navy */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.w360-section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

/* --- The Grid Layout --- */
.w360-hl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.w360-hl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px; /* Spacing between multiple sections */
}

/* Reverse modifier for alternating layout */
.w360-hl-row.w360-reverse {
    flex-direction: row-reverse;
}

/* --- Left Column: Text Content --- */
.w360-hl-content {
    flex: 1;
    max-width: 500px;
}

/* Badge (Historical Analysis) */
.w360-hl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E8F2FF;
    color: #1A73E8;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.w360-hl-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0B1C3E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.w360-hl-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Checkmark List */
.w360-hl-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.w360-hl-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.w360-icon-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #1A73E8; /* Blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* CTA Button */
.w360-hl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #061C47; /* Navy */
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.w360-hl-btn:hover {
    background-color: #0d2a63;
    transform: translateY(-2px);
    color: #fff;
}

/* --- Right Column: The Card/Image --- */
.w360-hl-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* The UI Card Look */
.w360-ui-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    width: 100%;
    max-width: 550px;
}

.w360-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0B1C3E;
}

.w360-date-badge {
    color: #aaa;
    font-weight: 500;
    font-size: 0.9rem;
}

/* The Chart Image Area */
.w360-chart-area {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 8px;
}

.w360-chart-area img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole chart is seen */
}

/* Card Stats Footer */
.w360-card-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.w360-stat-box h6 {
    margin: 0 0 5px 0;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.w360-val-green {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28C76F; /* Green */
}

.w360-val-red {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EA5455; /* Red */
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .w360-hl-row {
        flex-direction: column !important; /* Stack vertically on mobile */
        text-align: center;
        gap: 40px;
    }

    .w360-hl-content {
        max-width: 100%;
    }

    .w360-hl-list li {
        justify-content: center; /* Center list items */
        text-align: left;
    }

    .w360-card-stats {
        justify-content: center;
    }
}
