/* Base Styles */
.goal {
    width: 100%;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.125em;
    box-sizing: border-box;
    background: #F7F7F7;
}

.goal__position {
    width: 100%;
    max-width: 75em;
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.goal__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal__image img {
    width: 80%;
    height: auto;
}

.goal__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.125em
}

.goal__title_main {
    font-size: 1.875em;
    font-weight: 500;
    color: #000;
}

.goal__text {
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.6;
}

.goal__buttons {
    display: flex;
    gap: 1.125em;
}

.info__button_meer,
.info__button_SDG {
    width: 9.375em;
    height: 3.125em;
    border-radius: 10px;
    font-size: 1.25em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 0.125em 0.25em rgba(0, 0, 0, 0.1);
}

.info__button_meer {
    background-color: #2563EB;
    color: white;
}

.info__button_SDG {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
}

.info__button_meer:hover,
.info__button_SDG:hover {
    transform: scale(1.05);
}


/* Media Queries */
@media (max-width: 69em) {
    .goal__position {
        flex-direction: column;
        gap: 2.25em;
    }

    .goal__title {
        display: flex;
        justify-content: center;
    }

    .goal__title_main {
        font-size: 1.5em;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .goal__text {
        font-size: 1em;
        justify-content: center;
        text-align: center;
    }

    .goal__buttons {
        justify-content: center;
    }
}

@media (max-width: 50em) {
    .goal__title_main {
        font-size: 1.25em;
    }

    .goal__text {
        font-size: 0.875em;
    }

    .info__button_meer,
    .info__button_SDG {
        width: 8.125em;
        height: 2.875em;
    }
}

@media (max-width: 35em) {
    .goal {
        padding: 0.875em;
    }

    .goal__title_main {
        font-size: 1.125em;
    }

    .goal__text {
        font-size: 1em;
    }

    .goal__buttons {
        flex-direction: column;
        gap: 0.75;
        align-items: center;
    }

    .info__button_meer,
    .info__button_SDG {
        width: 8.125em;
        height: 2.75em;
        font-size: 0.875em;
    }
}