.hexo-exam-entry {
    width: 100%;
}

.hexo-exam-entry * {
    box-sizing: border-box;
}

.hexo-exam-entry-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--hemc-border);
    border-radius: 18px;
    background: #fff;
}

.hexo-exam-entry-card::before {
    content: "";
    position: absolute;
    top: -70px;
    inset-inline-end: -60px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: var(--hemc-border);
    pointer-events: none;
}

.hexo-exam-entry-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--hemc-primary);
    color: #fff;
    font-size: 24px;
}

.hexo-exam-entry-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hexo-exam-entry-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--hemc-primary-soft);
    color: var(--hemc-primary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
}

.hexo-exam-entry-content h3 {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.6;
}

.hexo-exam-entry-content p {
    margin: 6px 0 0;
    color: #000;
    font-size: 14px;
    line-height: 1.9;
}

.hexo-exam-entry-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hexo-exam-entry-metas span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid var(--hemc-border);
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-size: 12px;
    line-height: 1;
}

.hexo-exam-entry-metas i {
    color: var(--hemc-primary);
    font-size: 13px;
}

.hexo-exam-entry-metas b {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.hexo-exam-entry-metas small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
}

.hexo-exam-entry-action {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.hexo-exam-entry-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    min-height: 46px;
    padding: 10px 18px !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    background: var(--hemc-primary) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700 !important;
    line-height: 1.4;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
}

.hexo-exam-entry-notice {
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fff1f2;
    color: #991b1b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hexo-exam-entry-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hexo-exam-entry-icon,
    .hexo-exam-entry-action {
        justify-self: center;
    }

    .hexo-exam-entry-metas {
        justify-content: center;
    }
}
