/* Featured Story Block Styles */

.wp-block-sd-featured-story {
    width: 100%;
    max-width:1480px;
    min-width:100px;
    margin:auto;
}

.featured-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
    padding: 32px 24px 8px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.featured-story-meta {
    margin-bottom: 0.75rem;
}

.featured-story-kicker {
    
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    text-align: center;
    padding: 4px 20px;
    border-radius: 40px;
    color: var(--base-3);
    background-color: #008292;
}

.featured-story-title {
    margin: 2rem 0 1.5rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #222222;
}

.featured-story-excerpt {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #222222;
    font-weight: 300;
}

.featured-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 4.5rem 0.75rem 1.75rem;
    background: #1e2b64;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
a.featured-story-cta:hover {
color:#00FFFF;;
}
.featured-story-cta::after {
    content: "";
    background-image: url(../../../assets/img/ic-arrow-right.svg);
     background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: 4px 4px;   
    height: 36px;
    width: 36px;
    border-radius: 21px;
    background-color: #00FFFF;
    position: absolute;
    right: 6px;
    top: calc(50% - 18px);
    padding: 6px 0 6px 3px;
}

.featured-story-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.featured-story-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .featured-story-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .featured-story-media {
        order: -1;
    }

    .featured-story-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .featured-story-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .featured-story-title {
        font-size: 1.5rem;
    }

    .featured-story-cta {
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .featured-story-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .featured-story-cta {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
}
