/* =====================================================
   PLATFORM TRANS — BELGELER SAYFASI
===================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: #07102d;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =====================================================
   ANA ALAN
===================================================== */

.certificate-page {
    width: 100%;
    min-height: 100vh;

    padding: 120px 6vw 100px;

    background: #ffffff;
}


/* =====================================================
   BAŞLIK
===================================================== */

.certificate-page-header {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;

    margin-bottom: 90px;
}

.section-label {
    padding-top: 8px;

    color: rgba(7, 16, 45, 0.42);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.eyebrow {
    margin: 0 0 25px;

    color: #d71920;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.certificate-page-header h1 {
    margin: 0;

    color: #07102d;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.065em;
}

.certificate-page-header h1 span {
    color: rgba(18, 17, 155, 0.25);
}


/* =====================================================
   BELGE LİSTESİ
===================================================== */

.certificate-gallery {
    width: 100%;

    border-top: 1px solid rgba(7, 16, 45, 0.15);
}


/* =====================================================
   BELGE
===================================================== */

.certificate-item {
    position: relative;

    width: 100%;
    min-height: 150px;

    display: grid;

    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    gap: 35px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(7, 16, 45, 0.15);

    background: #ffffff;

    color: #07102d;

    text-decoration: none;

    transition:
        background 0.35s ease,
        padding-left 0.35s ease;
}

.certificate-item:hover {
    padding-left: 25px;

    background: #f5f6fa;
}


/* =====================================================
   NUMARA
===================================================== */

.certificate-number {
    color: #d71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.15em;
}


/* =====================================================
   BELGE İÇERİĞİ
===================================================== */

.certificate-item-content {
    display: flex;

    align-items: baseline;

    gap: 45px;
}

.certificate-item-content span {
    width: 190px;

    flex-shrink: 0;

    color: rgba(7, 16, 45, 0.42);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.certificate-item-content h2 {
    margin: 0;

    color: #07102d;

    font-size: clamp(40px, 4.5vw, 68px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.06em;
}


/* =====================================================
   OK
===================================================== */

.certificate-arrow {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(7, 16, 45, 0.18);

    color: #07102d;

    font-size: 18px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.certificate-item:hover .certificate-arrow {
    background: #d71920;

    border-color: #d71920;

    color: #ffffff;

    transform: translate(4px, -4px);
}


/* =====================================================
   GERİ DÖN
===================================================== */

.certificate-back {
    display: inline-flex;

    margin-top: 50px;

    color: #07102d;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.certificate-back:hover {
    color: #d71920;

    transform: translateX(-5px);
}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 700px) {

    .certificate-page {
        padding: 90px 20px 60px;
    }

    .certificate-page-header {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 60px;
    }

    .certificate-page-header h1 {
        font-size: 54px;
    }

    .certificate-item {
        grid-template-columns: 40px 1fr 42px;

        gap: 15px;

        min-height: 115px;
    }

    .certificate-item-content {
        display: block;
    }

    .certificate-item-content span {
        width: auto;

        display: block;

        margin-bottom: 10px;
    }

    .certificate-item-content h2 {
        font-size: 38px;
    }

    .certificate-arrow {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

}
