.ind-explorer {
margin: 2.5rem 0;
padding: clamp(1.25rem, 3vw, 2.5rem);
border: 1px solid rgba(176, 126, 30, 0.2);
border-radius: 1.5rem;
background: #f8f4ea;
}
.ind-explorer__intro {
max-width: 48rem;
margin-bottom: 1.75rem;
}
.ind-explorer__intro h2 {
margin: 0.25rem 0 0.65rem;
}
.ind-explorer__kicker,
.ind-explorer__type {
color: #9b6810;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.ind-explorer__controls {
display: grid;
gap: 1rem;
}
.ind-explorer__search-label {
display: grid;
gap: 0.45rem;
font-weight: 600;
}
.ind-explorer__search {
width: 100%;
padding: 0.9rem 1rem;
border: 1px solid #d7cdbb;
border-radius: 0.75rem;
background: #fff;
color: #14213d;
font: inherit;
}
.ind-explorer__search:focus {
border-color: #b07e1e;
outline: 3px solid rgba(176, 126, 30, 0.18);
outline-offset: 1px;
}
.ind-explorer__filters {
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
}
.ind-explorer__filter {
padding: 0.55rem 0.85rem;
border: 1px solid #d7cdbb;
border-radius: 999px;
background: #fff;
color: #14213d;
cursor: pointer;
font: inherit;
font-size: 0.9rem;
}
.ind-explorer__filter:hover,
.ind-explorer__filter:focus-visible,
.ind-explorer__filter.is-active {
border-color: #14213d;
background: #14213d;
color: #fff;
}
.ind-explorer__count {
margin: 1.25rem 0 0.8rem;
color: #5d6470;
font-size: 0.9rem;
}
.ind-explorer__grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem;
}
.ind-explorer__card {
margin: 0;
}
.ind-explorer__card[hidden] {
display: none;
}
.ind-explorer__card a {
display: flex;
min-height: 100%;
flex-direction: column;
padding: 1.1rem;
border: 1px solid rgba(20, 33, 61, 0.12);
border-radius: 1rem;
background: #fff;
color: #14213d;
text-decoration: none;
transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.ind-explorer__card a:hover,
.ind-explorer__card a:focus-visible {
border-color: rgba(176, 126, 30, 0.65);
box-shadow: 0 0.7rem 1.5rem rgba(20, 33, 61, 0.09);
transform: translateY(-2px);
}
.ind-explorer__card h3 {
margin: 0.35rem 0 0.5rem;
font-size: 1.1rem;
}
.ind-explorer__card p {
margin: 0 0 0.8rem;
color: #596171;
font-size: 0.92rem;
line-height: 1.55;
}
.ind-explorer__open {
margin-top: auto;
color: #9b6810;
font-size: 0.86rem;
font-weight: 700;
}
.ind-explorer__empty {
margin: 1rem 0 0;
padding: 1rem;
border-radius: 0.75rem;
background: #fff;
text-align: center;
}
@media (max-width: 680px) {
.ind-explorer__grid {
grid-template-columns: 1fr;
}
}