.banner {
    width: 100%;
    height: 324px;
    border-radius: 24px 24px 8px 8px;
    object-fit: cover;
}

section {
    margin-top: 96px;
    padding-top: 16px;
}

.type-label {
    display: inline-block;
    margin-top: 40px;
    padding: 4px 8px;
    border: 1px solid var(--Light-Grey);
    border-radius: 8px;
    margin-bottom: 8px;
}

main > div:not(:first-of-type) {
    border-top: 1px solid var(--Light-Grey);
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

.meta {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.meta-item-label {
    font-family: "Inclusive Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0px;
}

.meta-item-details {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
}

.meta ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

.meta p {
    margin-top: 8px;
}

.details {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

main {
    flex: 2;
    width: auto;
}

.booking {
    padding: 32px;
    position: sticky;
    top: 112px;
    align-self: flex-start;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 400px;
    flex: 1;
    border-radius: 16px;
    border: 1px solid var(--Neutral-Light-Grey, var(--Light-Grey));
}

.booking .btn {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.discounts {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.discounts li {
    font-weight: 300;
}

main > div h2 {
    margin-bottom: 8px;
}

.period {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--Light-Grey);
    width: fit-content;
    text-align: center;
    margin: 16px 0;
}

.date-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 160px;
}

.related-listing {
    margin-top: 16px;
}

.parent-listing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .details {
        flex-direction: column;
    }

    .booking {
        order: -1;
        position: relative;
        top: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
}

.credits {
    margin-top: 8px;
}