/* Bin colour tokens:
   --bin-accent → dot, "CAN GO IN" label, list bullets, CTA hover
   --bin-bg     → paler tint shown behind the Lottie animation */
.bin-cards__card--grey   { --bin-accent: #949494; --bin-bg: #f1f1f1; }
.bin-cards__card--blue   { --bin-accent: #2c6bcc; --bin-bg: #d9e7f3; }
.bin-cards__card--green  { --bin-accent: #318335; --bin-bg: #dfeac6; }
.bin-cards__card--brown  { --bin-accent: #6b4a2b; --bin-bg: #ece4da; }
.bin-cards__card--orange { --bin-accent: #f47101; --bin-bg: #fae3cf; }
.bin-cards__card--purple { --bin-accent: #701c98; --bin-bg: #ecdcec; }

.bin-cards {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bin-cards__title {
    margin-bottom: 40px;
}

.bin-cards__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bin-cards .bin-cards__card {
    display: flex;
    flex-direction: column;
    border-width: 1px;
    border-style: solid;
    border-color: #dddddd;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
}

.bin-cards .bin-cards__animation {
    aspect-ratio: 3 / 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--bin-bg, #f1f1f1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #dddddd;
}

.bin-cards__lottie {
    width: 100%;
    height: 100%;
}

.bin-cards__body {
    padding: 24px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.bin-cards__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bin-cards__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.bin-cards__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bin-accent);
    display: inline-block;
    flex-shrink: 0;
}

.bin-cards__desc {
    margin: 0;
    color: #656d74;
    font-size: 1.6rem;
    line-height: 1.4;
}

.bin-cards__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bin-cards__list-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bin-cards__list--yes .bin-cards__list-label { color: var(--bin-accent); }
.bin-cards__list--no  .bin-cards__list-label { color: #d8392b; }

.bin-cards__list-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.bin-cards__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bin-cards__list li {
    position: relative;
    padding-left: 18px;
    font-size: 1.6rem;
    line-height: 1.45;
    color: #131313;
}

.bin-cards__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bin-cards__list--yes li::before { background-color: var(--bin-accent); }
.bin-cards__list--no  li::before { background-color: #d8392b; }

.bin-cards__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.bin-cards__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: var(--bin-bg, #f1f1f1);
    color: var(--bin-accent, #131313);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

.bin-cards__pill-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.bin-cards__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #131313;
    text-decoration: none;
}

.bin-cards__cta:hover,
.bin-cards__cta:focus {
    color: var(--bin-accent);
    text-decoration: underline;
}

.bin-cards__cta-arrow {
    transition: transform 0.2s ease;
}

.bin-cards__cta:hover .bin-cards__cta-arrow {
    transform: translateX(3px);
}

@media screen and (min-width: 768px) {
    .bin-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .bin-cards__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bin-cards__desc,
    .bin-cards__list li {
        font-size: 2.4rem;
    }
}
