/* =====================================================
   PAST GRAND KNIGHTS HEADER
===================================================== */

.pg-header {
    margin-bottom: 35px;
}

.pg-eyebrow {
    display: inline-block;
    margin-bottom: 6px;

    color: #8b1e1e;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.pg-title {
    margin: 0;

    color: #222;

    font-size: 32px;
    font-weight: 700;
}

.pg-subtitle {
    max-width: 700px;

    margin: 10px 0 0;

    color: #777;

    line-height: 1.6;
}


/* =====================================================
   GRAND KNIGHT CARD
===================================================== */

.pg-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 12px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.06);

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


/* =====================================================
   HOVER
===================================================== */

.pg-card:hover {
    transform: translateY(-6px);

    border-color: #aaa;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.13);
}


/* =====================================================
   YEAR
===================================================== */

.pg-year {
    padding: 10px 12px;
    text-align: center;
    color: #f7b718;
    background: #112866;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}


/* =====================================================
   PHOTO
===================================================== */

.pg-photo {
    height: 170px;

    display: flex;

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

    padding: 15px;

    background:
        linear-gradient(180deg,
            #f8f8f8 0%,
            #eeeeee 100%);
}

.pg-photo img {
    width: 130px;
    height: 130px;

    object-fit: contain;

    border-radius: 50%;

    background: #fff;

    border: 4px solid #fff;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease;
}

.pg-card:hover .pg-photo img {
    transform: scale(1.05);
}


/* =====================================================
   NAME / INFORMATION
===================================================== */

.pg-info {
    padding: 18px 12px 20px;
    background: #f7f8fa;
    text-align: center;
}

.pg-info h3 {
    margin: 0 0 5px;

    color: #222;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.35;
}

.pg-info span {
    color: #888;

    font-size: 12px;
}


/* =====================================================
   CHARTER GRAND KNIGHT
===================================================== */

.pg-charter {
    border: 2px solid #f7b718;
}

.pg-charter .pg-year {
    background: #f7b718;
    color:#112866;
}

.pg-charter .pg-photo {
    height: 190px;
}

.pg-charter .pg-photo img {
    width: 145px;
    height: 145px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 767.98px) {

    .pg-title {
        font-size: 28px;
    }

    .pg-subtitle {
        font-size: 14px;
    }

    .pg-photo {
        height: 145px;
    }

    .pg-photo img {
        width: 110px;
        height: 110px;
    }

    .pg-info {
        padding: 14px 8px 16px;
    }

    .pg-info h3 {
        font-size: 14px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .pg-header {
        margin-bottom: 25px;
    }

    .pg-title {
        font-size: 24px;
    }

    .pg-eyebrow {
        font-size: 11px;
    }

    .pg-subtitle {
        font-size: 13px;
    }

    .pg-year {
        padding: 8px 5px;
        color: #f7b718;
        background: #112866;
        font-size: 10px;
    }

    .pg-photo {
        height: 125px;

        padding: 10px;
    }

    .pg-photo img {
        width: 90px;
        height: 90px;
    }

    .pg-info {
        padding: 12px 5px 14px;
    }

    .pg-info h3 {
        font-size: 12px;
    }

    .pg-info span {
        font-size: 10px;
    }

}