﻿.exam-card {
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

/* INNER FLEX */
.exam-card-inner {
    display: flex;
    align-items: center;
}

/* ICON CONTAINER (KEY FIX) */
.exam-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

    /* ICON IMAGE */
    .exam-icon-box img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

/* PLACEHOLDER (if no icon) */
.icon-placeholder {
    width: 26px;
    height: 26px;
}

/* TEXT BLOCK */
.exam-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
.exam-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* SUBTITLE */
.exam-sub {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* HOVER */
.exam-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
