.kur-result-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 28px;
}

.kur-result-header .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.kur-result-header .subtitle {
    color: #64748b;
    margin: 0;
}

.kur-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.kur-result-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.kur-result-item .caption {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.kur-result-item .value {
    display: block;
    margin-top: 10px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
}

.kur-result-item.is-highlight {
    background: linear-gradient(120deg, #5562d6, #3e4ab1);
    color: #ffffff;
}

.kur-result-item.is-highlight .caption {
    color: rgba(255, 255, 255, 0.8);
}

.kur-result-item.is-highlight .value {
    color: #ffffff;
}

.kur-result-card .kur-result-footer {
    margin-top: 18px;
}

#table-kur{
    overflow-x: scroll;

}

.single-post-content_text table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 0.75rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(100, 116, 139, 0.25);
}

.single-post-content_text thead {
    background: #f1f5f9;
}

.single-post-content_text thead th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #0f172a;
    padding: 14px 16px;
}

.single-post-content_text tbody td {
    padding: 14px 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.single-post-content_text tbody tr:nth-child(even) {
    background: #f8fafc;
}

.single-post-content_text tbody tr:hover {
    background: #eef2ff;
}

@media (max-width: 640px) {
    .single-post-content_text thead {
        display: none;
    }

    .single-post-content_text tbody tr {
        border-bottom: 1px solid rgba(148, 163, 184, 0.35);
        margin-bottom: 12px;
        border-radius: 12px;
        overflow: hidden;
    }

    .single-post-content_text tbody td {
        border: none;
        padding: 10px 14px;
        position: relative;
    }

    .single-post-content_text tbody td::before {
        content: attr(data-label);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #94a3b8;
        display: block;
        margin-bottom: 4px;
    }
}
