.title-detail {
    margin-bottom: 40px;
}

.title-detail h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 50px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #041F4A;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.box-wrapper {
    border-radius: 8px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #979797;
    flex: 1;
    aspect-ratio: 1 / 0.61224489;
    max-height: 100%;
    max-width: 392px; 
    min-height: 252px;
}

.box-wrapper img {
    width: 180px;
    height: 150px;
    margin: 0 auto 1rem;
}

.box-wrapper .title-link {
    margin-bottom: 0;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #0F1C49;
}

@media screen and (max-width: 991px) {
    .content-wrapper {
        flex-wrap: wrap;
    }
    
    .box-wrapper {
        flex: 1 1 calc(50% - 20px);
    }
}

@media screen and (max-width: 769px) {
    .content-wrapper {
        flex-direction: column;
    }

    .box-wrapper {
        aspect-ratio: none;
        width: 100%;
        /* max-height: fit-content; */
        aspect-ratio: auto;
    }

    .box-wrapper img {
        width: 100%;
    }

    .title-detail {
        margin-bottom: 1.5rem !important;
    }

    .title-detail h1 {
        font-weight: 700;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0px;
        color: #0A4874;
    }

    .content-wrapper {
        gap: 1.5rem;
    }
}