/* ==================================================
   Certifications Section – Minimal Card
================================================== */

#certifications {
    padding-block: clamp(8rem, 10vw, 12rem);
}

/* ==================================================
   Card
================================================== */
.certification-card {
    max-width: 720px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

    background: #ffffff;
    padding: 3.2rem 3.6rem;
    border-radius: 16px;

    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certification-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* ==================================================
   Content
================================================== */
.certification-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.certification-meta {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 1.4rem;
}

.certification-description {
    font-size: 1.45rem;
    line-height: 1.7;
    color: #555;
    max-width: 60ch;
}

/* ==================================================
   Action
================================================== */
.certification-action {
    flex-shrink: 0;
}

/* ==================================================
   Mobile
================================================== */
@media (max-width: 600px) {
    .certification-card {
        flex-direction: column;
        text-align: center;
        gap: 2.4rem;
    }

    .certification-description {
        max-width: 100%;
    }
}
