

.fk-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
    line-height: 1.2;
    white-space: nowrap;
}

.fk-btn i {
    font-size: 16px;
    line-height: 1;
}

.fk-btn-primary {
    background: var(--purple);
    color: #ffffff !important;
}

.fk-btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.fk-btn-outline {
    background: #ffffff;
    color: var(--dark-purple) !important;
    border-color: rgba(30, 45, 92, 0.25);
}

.fk-btn-outline i {
    color: var(--purple);
}

.fk-btn-outline:hover {
    border-color: var(--purple);
    background: var(--light-purple);
    color: var(--dark-purple) !important;
    transform: translateY(-2px);
}

.fk-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45);
}

.fk-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #f2d492;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.fk-btn-ghost:hover i {
    color: #f2d492;
}

.fk-intro {
   
    margin: 0 0 40px 0;
    color: var(--body-text-purple);
    font-size: 17px;
    line-height: 1.75;
}

.fk-grid {
    display: grid;
    gap: 26px;
    margin-bottom: 55px;
}

.fk-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: #ffffff;
    border: 1px solid rgba(30, 45, 92, 0.09);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(30, 45, 92, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 45, 92, 0.13);
}

.fk-card-media {
    position: relative;
    min-height: 265px;
    overflow: hidden;
}

.fk-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fk-card:hover .fk-card-media img {
    transform: scale(1.04);
}

.fk-card-media.fk-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
}

.fk-card-media.fk-media-placeholder i {
    font-size: 74px;
    color: rgba(255, 255, 255, 0.9);
}

.fk-card-body {
    display: flex;
    flex-direction: column;
    padding: 30px 36px 28px 36px;
}

.fk-card-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 0 0 12px 0;
}

.fk-card-title h2 {
    color: var(--dark-purple);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.fk-badge-soon {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f2d492;
    color: var(--dark-purple);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.fk-card-spot {
    color: var(--body-text-purple);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 22px 0;
}

.fk-card.is-soon .fk-card-spot {
    color: #8286a8;
}

.fk-card-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fk-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(0.35);
}

.fd-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 34px 0;
}

.fd-fact {
    background: var(--light-purple);
    border: 1px solid rgba(0, 118, 255, 0.12);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
}

.fd-fact strong {
    display: block;
    color: var(--purple);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.fd-fact span {
    display: block;
    color: var(--dark-purple);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
}

.fd-cta {
    background: linear-gradient(135deg, #1e2d5c 0%, #0076ff 100%);
    border-radius: 20px;
    padding: 34px 40px;
    margin: 40px 0;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(30, 45, 92, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.fd-cta-text h3 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.fd-cta-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    margin: 0;
}

.fd-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fd-cta .fk-btn-white {
    background: #ffffff;
    color: var(--dark-purple) !important;
}

.fd-cta .fk-btn-white i {
    color: var(--purple);
}

.fd-cta .fk-btn-white:hover {
    transform: translateY(-2px);
}

.fd-bolum-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 26px 0 10px 0;
    padding: 0;
    list-style: none;
}

.fd-bolum-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(30, 45, 92, 0.12);
    border-radius: 14px;
    color: var(--dark-purple);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.fd-bolum-nav a i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--light-bg);
    color: var(--purple);
    font-size: 18px;
    transition: all 0.3s ease;
}

.fd-bolum-nav a:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
}

.fd-bolum-nav a:hover i {
    background: var(--purple);
    color: #ffffff;
}

.fd-bolum {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 45, 92, 0.1);
    
    scroll-margin-top: 30px;
}

.fd-bolum-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 8px;
}

.fd-bolum-head .fd-bolum-ikon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--purple);
    color: #ffffff;
    font-size: 25px;
}

.fd-bolum-head h2 {
    margin: 0 0 8px 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    font-size: 26px;
}

.fd-bolum-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fd-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(30, 45, 92, 0.06);
    color: #6b6f8d;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.fd-bolum .fd-spot {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-purple);
    line-height: 1.65;
    margin: 20px 0 18px 0;
    padding: 20px 24px;
    background: rgba(242, 212, 146, 0.18);
    border-left: 5px solid #f2d492;
    border-radius: 0 15px 15px 0;
}

.fd-bolum-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.fd-footer-nav {
    max-width: 820px;
    margin: 30px auto 55px auto;
    padding-top: 28px;
    border-top: 1px solid rgba(30, 45, 92, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1100px) {
    .fk-card {
        grid-template-columns: 340px 1fr;
    }
}

@media (max-width: 991px) {
    .fk-card {
        grid-template-columns: 1fr;
    }

    .fk-card-media {
        min-height: 0;
        aspect-ratio: 16 / 8.5;
    }

    .fk-card-media.fk-media-placeholder i {
        font-size: 60px;
    }

    .fk-card-body {
        padding: 24px 26px 26px 26px;
    }

    .fd-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .fd-bolum-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .fd-cta {
        padding: 28px 26px;
    }
}

@media (max-width: 576px) {
    .fk-card-title h2 {
        font-size: 20px;
    }

    .fk-card-actions .fk-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .fd-bolum-nav {
        grid-template-columns: 1fr;
    }

    .fd-facts {
        gap: 12px;
    }

    .fd-fact strong {
        font-size: 22px;
    }

    .fd-cta-actions {
        width: 100%;
    }

    .fd-cta-actions .fk-btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .fd-bolum-head {
        gap: 14px;
    }

    .fd-bolum-head .fd-bolum-ikon {
        width: 46px;
        height: 46px;
        font-size: 21px;
        border-radius: 13px;
    }

    .fd-bolum-head h2 {
        font-size: 22px;
    }

    .fd-bolum .fd-spot {
        font-size: 16px;
        padding: 16px 18px;
    }

    .fd-footer-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .fd-footer-nav .fk-btn {
        justify-content: center;
    }
}
