/* ===== Estilos base ===== */
.directory-header {
    text-align: left;
    margin-bottom: 1.5rem;
}
.directory-header .title {
    color: #82B1EF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.common-cancers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.common-cancer-pill {
    min-width: 100px;
    max-width: 114px;
    width: 100%;
    display: flex;
    padding: 5px 7px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1.5px solid #82B1EF;
    color: #82B1EF;
    text-decoration: none;
}
.common-cancer-pill:hover {
    background: #F5B82F;
    border: 1.5px solid #F5B82F;
    color: #fff;
}
.divider {
    margin: 2rem 0;
    width: 100%;
    object-fit: cover;
}
.desc {
    color: #6E747B;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px; /* 160% */
}
.directory-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.directory-search input {
    flex: 1;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    background: #82B1EF;
    color: #fff;
    font-weight: 600;
    outline: none;
    max-width: 450px;
}
.directory-search input::placeholder {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.results-count {
    font-size: 0.9rem;
    color: #6e7fa8;
}
.results-count strong {
    background: #ffc82e;
    color: #333;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    font-weight: 700;
}
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
@media screen and (max-width:425px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .disease-filters {
        padding: 1rem !important;
    }
    .disease-directory{
        padding: 0 !important;
    }
}
.disease-search-card {
    width: 100%;
    min-height: 90px;
    background: #82B1EF;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disease-search-card span {
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 18px; /* 120% */
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.disease-search-card:hover {
    background: #F5B82F;
}