.link_ticker {
    background-color: #F2F2F2;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    
    /* Custom Container */
    & .link_ticker_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Content Section */
    & .link_ticker_content {
        padding: 50px 0 30px;
        text-align: center;
        
        & p {
            font-size: 20px;
            line-height: 1.5;
            color: #0A3956;
            margin: 0;
            font-weight: 500;
        }
        
        & h2, & h3 {
            color: #0A3956;
            margin: 0 0 15px;
        }
    }

    /* Ticker Boxes Grid */
    & .ticker_boxes {
        display: flex;
        flex-wrap: nowrap;
        gap: 25px;
        padding: 0 0 50px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: center;
        
        &::-webkit-scrollbar {
            display: none;
        }
    }

    /* Individual Ticker Box */
    & .ticker_box {
        background: white;
        border-radius: 10px;
        padding: 20px 25px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: #0A3956;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex: 0 0 auto;
        white-space: nowrap;
        
        & .check_icon {
            flex-shrink: 0;
        }
        
        & span {
            line-height: 1.3;
            font-weight: 700;
            color: #0A3956;
        }
        
        &:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .link_ticker {
        & .ticker_boxes {
            gap: 20px;
        }
    }
}

@media (max-width: 768px) {
    .link_ticker {
        & .link_ticker_content {
            padding: 40px 15px 25px;
            
            & p {
                font-size: 18px;
            }
        }

        & .ticker_boxes {
            gap: 15px;
            padding: 0 0 40px 0;
        }

        & .ticker_box {
            font-size: 15px;
            padding: 18px 20px;
        }
    }
}

@media (max-width: 480px) {
    .link_ticker {
        & .link_ticker_content {
            padding: 30px 15px 20px;
            
            & p {
                font-size: 16px;
            }
        }

        & .ticker_boxes {
            padding: 0 0 30px 0;
        }

        & .ticker_box {
            font-size: 14px;
            padding: 15px 18px;
        }
    }
}

