.stateSection {
    box-shadow: var(--shadow);
    padding: 1rem .3rem .3rem;
    border-radius: .2rem;
    overflow: visible;
    margin: 1rem 0 0;
    position: relative;
}

.stateSection .row * {
    margin: 0;
}

.stateSection .row {
    margin: .2rem 0;
}

.stateSection .imgWrapper {
    aspect-ratio: 7/4;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: .2rem;
}

.stateSection img {
    height: 100%;
}

.stateSection h3 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--clr_acnt);
    line-height: 1.8rem;
    margin: 0;
}

.viewMoreBtn {
    position: absolute;
    top: -10px;
    right: 10px;
    width: max-content;
    border-radius: .35rem;
    padding: .2rem .5rem;
    box-shadow: var(--shadow);
    background-color: var(--clr_acnt);
    color: var(--light-text);
}

.stateSection .eachItem {
    border-bottom: 2px dashed var(--clr_bg_grey_tint);
}

.stateSection .eachItem:nth-last-child(2) {
    border-bottom: none;
}

.viewMoreBtn:hover {
    background: var(--clr_acnt_secondary);
    color: var(--light-text);
}

.stateSection .stateNavbar {
    position: absolute;
    top: -10px;
    left: 10px;
}

.stateSection .stateNavbar .head,
.stateSection .stateNavbar .subHead {
    background-color: var(--clr_acnt);
    width: max-content;
    display: flex;
    border-radius: .25rem;
    margin-bottom: .2rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.stateSection .stateNavbar .subHead {
    display: none;
}

.stateSection .stateNavbar .subHead.active {
    display: flex;
}

.stateSection .stateNavbar .subHead span {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--light-text);
    line-height: 1.8rem;
    margin: 0;
    padding: .3rem .8rem;
    max-width: 100%;
}

.stateSection .stateNavbar .head span {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--light-text);
    line-height: 1.8rem;
    margin: 0;
    padding: .3rem .8rem;
}

.stateSection .container {
    margin-top: max(6vh, 8rem);
}

.stateSection .eachLocContainer {
    display: none;
}

.stateSection .subHead .activeContainerToggle,
.stateSection .stateNavbar .head .activeHead {
    background-color: var(--clr_acnt_secondary);
    font-weight: 600;
}

.stateSection .eachLocContainer.activeContainer {
    display: flex !important;
}
