.break-container {
    width: 100vw;
    position: relative;
    left: calc(-1 * (100vw - 100%) / 2);
}

body {
    background-color: #FAFCFF;
    overflow-x: hidden;
}

.heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: calc(100dvh - 490px);
}

.card {
    display: flex;
    padding: 2rem 3rem;
    background-color: #ffff;
    border-radius: 12px;
    box-shadow: 2px 2px 6px #0000002b;
    transition: box-shadow .1s;
    width: 100%;
    max-width: 75rem;
    font-size: 16px;
}

.card:hover {
    box-shadow: 2px 2px 12px #0000002b;
    text-decoration: none;
    background-color: #ffff;
}

.card:active,
.panel-hunting-a:active,
.panel-hunting-a:hover {
    text-decoration: none;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #000;
}

.panel-hunting {
    padding: 3rem 4rem;
    background-color: #ffff;
    border-radius: 12px;
    box-shadow: 2px 2px 6px #0000002b;
    transition: box-shadow .1s;
    width: 100%;
    max-width: 75rem;
    margin-bottom: 1rem;
    font-size: 16px;
}

.panel-hunting-body {
    padding-top: 1.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.panel-hunting-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.panel-hunting-arrow {
    transition: all .1s ease-out;
}

.panel-hunting-a[aria-expanded="true"] .panel-hunting-arrow {
    transform: rotate(180deg);
}

.panel-hunting-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-hunting li::marker {
    color: #4D83FA;
}

.panel-hunting-body-heading {
    text-align: justify;
}

@media (max-width: 767px) {
    .content-container {
        min-height: auto;
    }

    .panel-hunting-list {
        margin-left: -2rem;
    }

    .panel-hunting {
        padding: 2rem 3rem;
    }

    .heading-container {
        flex-direction: column-reverse;
    }

    .card {
        padding: 2rem 3rem;
    }
}