/* ----------------------------------------------------------------
     [ associados.php ]
-----------------------------------------------------------------*/

.card-associado {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.card-associado:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-associado .imagem img {
    width: 160px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.card-associado p {
    color: #444;
}

.tipo-noticia a {
    color: #fff;
    text-decoration: none;
}

.tipo-noticia.bg-gold {
    display: inline-block;
    margin-top: 10px;
    background: #3b76b7;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.conteudo {
    display: none;
    margin-top: 20px !important;
}

.icon-details {
    font-size: 20px !important;
    background-color: #3b76b7;
    color: white;
    padding: 2px !important;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}

.icon-info {
    font-size: 16px !important;
    background-color: #3b76b7;
    color: white;
    padding: 2px !important;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20% !important;
}


.card-body-associado {
    padding-left: 15px;
}

@media (max-width: 767px) {
    .card-body-associado {
        padding-left: 0;
        padding-top: 15px;
    }
}


@media (max-width: 320px) {
    .card-associado .imagem img {
        width: 160px;
        height: 180px;
    }
}

@media (min-width: 375px) and (max-width: 400px) {
    .card-associado .imagem img {
        width: 210px;
        height: 230px;
    }
}

@media (min-width: 401px) and (max-width: 450px) {
    .card-associado .imagem img {
        width: 250px;
        height: 270px;
    }
}

@media (min-width: 451px) and (max-width: 768px) {
    .card-associado .imagem img {
        width: 300px;
        height: 320px;
    }
}