/* World Stroke Day Section */
.worldStrokeDaySection {
    width: 100%;
    height: auto;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
    /* padding: 60px 20px; */
    /* background: #fff; */
}

.wsd-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
    /* flex-wrap: wrap; */
}

.wsd-left {
    flex: 1;
    min-width: 50%;
    text-align: center;
}

.wsd-left img {
    width: 100%;
    max-width: 500px;
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.wsd-right {
    flex: 1;
    min-width: 50%;
}

.wsd-right h4 {
    font-size: 1.2rem;
    text-transform: capitalize;
    margin-bottom: 20px !important;
    border-radius: 50px;
    border: 1px solid #98adff;
    padding: 8px 20px;
    display: inline;
}

.wsd-right h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    color: #25228d;
    margin-bottom: 20px;
    margin-top: 20px;
}

.wsd-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Highlights */
.wsd-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-card {
    flex: 1;
    min-width: 150px;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.highlight-card h3 {
    color: #2e23df;
    font-size: 24px;
    margin-bottom: 8px;
}

.highlight-card p {
    color: #666;
    font-size: 14px;
}

.glow-text {
    color: #CB1725; /* Stroke Awareness Red */
    position: relative;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(203, 23, 37, 0.6),
                 0 0 10px rgba(203, 23, 37, 0.4),
                 0 0 15px rgba(203, 23, 37, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 5px rgba(203, 23, 37, 0.6),
                     0 0 10px rgba(203, 23, 37, 0.4),
                     0 0 15px rgba(203, 23, 37, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 10px rgba(203, 23, 37, 0.8),
                     0 0 20px rgba(203, 23, 37, 0.6),
                     0 0 30px rgba(203, 23, 37, 0.4);
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 5px rgba(203, 23, 37, 0.6),
                     0 0 10px rgba(203, 23, 37, 0.4),
                     0 0 15px rgba(203, 23, 37, 0.2);
        transform: scale(1);
    }
}


/* Event Info Block */
.wsd-info-block {
    background: #fff;
    border-left: 5px solid #98adff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wsd-info-block h4 {
    border: none;
    border-radius: 0px;
    padding: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.wsd-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.wsd-info-block ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.wsd-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {

    .worldStrokeDaySection{
        padding: 0 10px;
        margin: 0;
    }

    .wsd-container {
        padding: 0;
        margin: 40px 0;
        flex-direction: column;
        /* text-align: center; */
    }

    .wsd-highlights {
        align-items: center !important;
        justify-content: center !important;
        
        .highlight-card:nth-child(3){
            width: 100% !important;
            max-width: 100%;
        }
    }

    .highlight-card {
        max-width: 200px;
    }

    .wsd-right{

        h4{
            font-size: 1rem;
            line-height: auto;
        }

        h1{
            font-size: 2rem;
            line-height: 2.5rem;
        }
    }
}
