.fcc-wrapper {
    width: 100%;
}

.fcc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fcc-wrap {
    display: flex;
}

.fcc-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 36px 32px;
    background-color: var(--bg, #f8f9fc);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    position: relative;
    top: 0;
}

.fcc-name {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
}

.fcc-tag-wrap {
    margin-bottom: 20px;
}

.fcc-tag {
    display: inline-block;
    padding: 5px 14px;
    background-color: rgba(67, 97, 238, 0.08);
    color: #4361ee;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.fcc-desc {
    margin: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.fcc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcc-list-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
}

.fcc-bullet {
    font-size: 8px;
    color: #4361ee;
    flex-shrink: 0;
    line-height: 1.8;
}

.fcc-list-text {
    flex: 1;
}

@media (max-width: 1024px) {
    .fcc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fcc-card {
        padding: 28px 24px;
    }

    .fcc-name {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .fcc-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fcc-card {
        padding: 24px 20px;
    }

    .fcc-name {
        font-size: 22px;
    }
}