.st-home {
    padding: 32px 0;
}

.st-home__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.st-home__hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
}

.st-home__hero-content {
    flex: 1;
}

.st-home__hero-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 600;
}

.st-home__title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

.st-home__subtitle {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.st-home__hero-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.st-home__progress-card,
.st-home__status-card {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.st-home__progress-label,
.st-home__status-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #6b7280;
}

.st-home__progress-value,
.st-home__status-value {
    font-size: 18px;
    font-weight: 700;
}

.st-home__topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.st-home__section-title {
    margin: 0 0 6px;
    font-size: 24px;
}

.st-home__section-note {
    margin: 0;
    color: #6b7280;
}

.st-home__filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.st-home__filter-chip {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.st-home__filter-chip.is-active {
    font-weight: 700;
}

.st-home__highlight {
    margin-bottom: 24px;
}

.st-home__featured-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #eff6ff;
}

.st-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.st-card__title {
    margin: 0 0 10px;
    font-size: 22px;
}

.st-card__text {
    margin: 0;
    color: #374151;
}

.st-card__actions {
    display: flex;
    align-items: center;
}

.st-home__grid {
    padding: 24px;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    background: #fff;
}

.st-home__grid-placeholder,
.st-home__empty {
    color: #6b7280;
    font-size: 15px;
}

@media (max-width: 768px) {
    .st-home__hero,
    .st-home__topbar,
    .st-home__featured-card {
        flex-direction: column;
    }

    .st-home__hero-meta {
        min-width: auto;
    }
}

.st-home__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
}

.st-test-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.st-test-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.st-test-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.st-test-card__kicker {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.st-test-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.st-test-card__badges {
    display: flex;
    flex-shrink: 0;
}

.st-test-card__badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.st-test-card__badge--locked {
    background: #f3f4f6;
    color: #374151;
}

.st-test-card__body {
    margin-bottom: 18px;
}

.st-test-card__desc {
    margin: 0 0 16px;
    color: #4b5563;
    line-height: 1.6;
}

.st-test-card__meta-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.st-test-card__meta-item {
    padding: 10px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    background: #f9fafb;
}

.st-test-card__meta-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #6b7280;
}

.st-test-card__meta-value {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.st-test-card__foot {
    margin-top: auto;
}

.st-test-card__status-note {
    margin-bottom: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.st-test-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-test-card--recommended {
    border-color: #bfdbfe;
    background: #f8fbff;
}

.st-test-card--completed {
    border-color: #d1fae5;
}

.st-test-card--locked {
    opacity: 0.9;
}

.st-test-card--resume {
    border-color: #fde68a;
}

@media (max-width: 1024px) {
    .st-home__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .st-home__grid {
        grid-template-columns: 1fr;
    }

    .st-test-card__meta-list {
        grid-template-columns: 1fr;
    }
}