:host {
    display: block;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.back-link {
    color: var(--color-black);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.box-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.box {
    box-shadow: 0px 3px 6px #00000053;
    border-radius: 8px;
    background-color: white;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.box .heading {
    text-align: center;
    font-weight: bold;
    font-size: 1.75rem;
}

.box .img-wrapper {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.box .img-wrapper img {
    width: 100%;
    height: auto;
}

.box .suitable .title {
    font-weight: bold;
}

.box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}
.box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    line-height: 1;
}
.box ul li:before {
    content: '';
    display: inline-block;
    background-image: url('assets/icon/check-bold.svg');
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.box button {
    background-color: var(--color-grape);
    border: 1px solid var(--color-grape);
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 5px;
}
