.box-container{
    background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.box-container--state-guide-landing {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-main{
    background: #fafafa;
}
.main_area {
max-width: 1400px;
margin: 24px auto 24px;
padding: 0 20px;
}
.org-breadcrumb {
font-size: 14px;
margin-bottom: 18px;
}
.page-header {
text-align: center;
margin-bottom: 50px;
}

.page-title {
font-size: 28px;
color: #414042;
font-weight: 400;
margin-bottom: 15px;
text-align: left;
}

.page-subtitle {
font-size: 15px;
font-weight: 400;
margin-bottom: 15px;
text-align: left;
}

.page-description {
font-size: 15px;
line-height: 1.6;
margin: 0 auto;
text-align: left;
}

.states-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 24px;
margin-bottom: 40px;
padding: 0;
background: transparent;
border-radius: 0;
}

.state-card {
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
overflow: hidden;
}

/* Legacy: whole-card link removed; only .state-cta is clickable */
.state-card--full-link {
display: block;
text-decoration: none;
color: inherit;
}

.state-card--full-link:hover {
text-decoration: none;
color: inherit;
}

/* State hero thumbnails — match marketplace vendor card image frame (marketplace.css) */
.state-card-banner {
    position: relative;
    display: block;
    width: 100%;
    height: 235px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #eee;
    border-bottom: 1px solid #eee;
}
.state-card-banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center 42%;
    margin: 0;
    aspect-ratio: unset;
    border-radius: 0;
    display: block;
    transition: transform 0.35s ease;
}
.state-card:has(.state-cta:hover) .state-card-banner img,
.state-card:has(.state-cta:focus-visible) .state-card-banner img {
transform: scale(1.03);
}

.state-card:has(.state-cta:hover),
.state-card:has(.state-cta:focus-within) {
transform: translateY(-3px);
box-shadow: 0 4px 15px rgba(119, 56, 107, 0.2);
}

.state-link {
display: flex;
flex-direction: column;
padding: 20px;
text-decoration: none;
color: #414042;
transition: all 0.3s ease;
height: 100%;
}

.state-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}

.state-name {
display: block;
font-size: 16px;
font-weight: 400;
color: #414042;
flex: 1;
}

.state-link:hover .state-name {
color: #414042;
}

.state-label {
display: block;
font-size: 14px;
font-weight: 300;
}

.state-cta {
flex-shrink: 0;
margin-left: 15px;
white-space: nowrap;
text-decoration: none;
}

.state-card .state-cta:focus-visible {
outline: 2px solid #77386B;
outline-offset: 2px;
}

.info-card {
background: #fafafa;
border-radius: 8px;
padding: 30px;
border-left: 4px solid #77386B;
}

.info-card h3 {
color: #77386B;
font-size: 24px;
font-weight: 400;
margin-bottom: 20px;
}

.info-card p {
font-size: 15px;
line-height: 1.8;
margin-bottom: 5px;
}

.info-card ul {
font-size: 15px;
line-height: 1.8;
padding-left: 25px;
margin-bottom: 5px;
}

.info-card ul li {
margin-bottom: 5px;
}


.org-action-link {
background: #f5f5f5;
color: #414042;
border: none;
padding: 5px 16px;
border-radius: 20px;
text-decoration: none;
display: inline-block;
font-size: 13px;
font-weight: 300;
transition: all 0.3s ease;
white-space: nowrap;
}

.org-action-link:hover {
background: #e0e0e0;
color: #414042;
text-decoration: none;
}


@media (max-width: 767.98px) {
    .state-card-banner {
        height: auto;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 768px) {
.box-container{
    padding: 15px;
}
.page-title {
    font-size: 24px;
    line-height: 1.3;
}

.states-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
}

.info-card {
    padding: 20px;
}
.main_area{
    padding: 0 20px;
}

.state-link {
    padding: 20px 24px;
}
}