/* ===================================
GOAL IMAGE
=================================== */

.goal-image-wrapper {
    width: 100%;

    height: 520px;

    background: #f8f9fa;

    border-radius: 16px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.goal-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: contain;
}

.goal-image:hover {
    transform: scale(1.02);
}
