.box {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

/*************** Specializzazioni **************/
.box-award {
    border-left: 6px solid #d4af37;
}

.box-recent-death {
    background: #f8f8f8;
}

.box-born-today {
    background: #fffdf4;
}
/*************** Specializzazioni anniversario nascita **************/
.fdb-box {
    display: flex;
    gap: 18px;
    padding: 18px;
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.fdb-box-image {
    flex-shrink: 0;
}

    .fdb-box-image img {
        width: 110px;
        height: 150px;
        object-fit: cover;
        border-radius: 14px;
        display: block;
    }

.fdb-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.fdb-box-badge {
    font-size: 13px;
    font-weight: 600;
    color: #8a6b00;
    letter-spacing: 0.3px;
}

.fdb-box-title {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
}

    .fdb-box-title a {
        color: #1e8f3a;
        text-decoration: none;
    }

        .fdb-box-title a:hover {
            text-decoration: underline;
        }

.fdb-box-subtitle {
    font-size: 17px;
    color: #606060;
}

.fdb-box-description {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: #303030;
}

    .fdb-box-description a {
        color: #2f63c7;
        text-decoration: none;
    }

        .fdb-box-description a:hover {
            text-decoration: underline;
        }

/* mobile */

@media (max-width: 700px) {

    .fdb-box {
        gap: 14px;
        padding: 14px;
    }

    .fdb-box-image img {
        width: 80px;
        height: 110px;
    }

    .fdb-box-title {
        font-size: 24px;
    }

    .fdb-box-subtitle {
        font-size: 15px;
    }

    .fdb-box-description {
        font-size: 14px;
    }
}