/* BlueSky Activity Recommender – Frontend */

.bar {
    margin: 40px 0;
    font-family: inherit;
}

.bar__filters {
    background: #f5f7f8;
    padding: 24px;
    border: 1px solid #e2e6e8;
    margin-bottom: 30px;
}

.bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bar__field {
    margin-bottom: 16px;
}

.bar__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.bar__field input,
.bar__field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccd2d6;
    font-size: 14px;
    background: #ffffff;
}

.bar__cta {
    background: #0c3c60;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 15px;
}

.bar__cta:hover {
    background: #082a42;
}

.bar__card {
    border: 1px solid #e2e6e8;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.bar__media img {
    width: 100%;
    height: auto;
    display: block;
}

.bar__content {
    padding: 18px;
}

.bar__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.bar__summary {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
}

.bar__tags {
    margin-bottom: 12px;
}

.bar__badge {
    display: inline-block;
    background: #eef2f4;
    padding: 4px 8px;
    font-size: 12px;
    margin: 0 6px 6px 0;
}

.bar__button {
    display: inline-block;
    background: #0c3c60;
    color: #ffffff;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 14px;
}

.bar__button:hover {
    background: #082a42;
}

.bar__results.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Wizard step control */

.bar-step {
    display: none;
}

.bar-step.active {
    display: block;
}
