/* ================================
   FINOWINGS TRADING SECTION ONLY
   ================================ */

#fw-trading-section {
    padding: 20px 20px;
    /*background: linear-gradient(180deg, #0a1f44, #04162e);*/
}

#fw-trading-section .fw-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#fw-trading-section .fw-headline {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

#fw-trading-section .fw-card {
    background: #181d38 ;
    border-radius: 18px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

#fw-trading-section .fw-left {
    flex: 1;
    text-align: left;
}

#fw-trading-section .fw-badge {
	font-size:34px;
    color: #FFFFFF;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

#fw-trading-section .fw-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000000;
}

#fw-trading-section .fw-info {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

#fw-trading-section .fw-info li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
	color: #FFFFFF !important;
}

#fw-trading-section .fw-highlight {
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
	color: #FFFFFF !important;
}

#fw-trading-section .fw-right {
    flex: 1;
}

#fw-trading-section .fw-right img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

#fw-trading-section .fw-cta {
    margin-top: 35px;
}

#fw-trading-section .fw-btn {
    display: inline-block;
    background: #cf9c0a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

#fw-trading-section .fw-btn:hover {
    background: #be123c;
}

#fw-trading-section .fw-cta p {
    margin-top: 10px;
    color: #ffffff;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    #fw-trading-section .fw-card {
        flex-direction: column;
        text-align: center;
    }

    #fw-trading-section .fw-left {
        text-align: center;
    }

    #fw-trading-section .fw-highlight {
        justify-content: center;
        flex-wrap: wrap;
    }
}

