.ninot-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.main-ninot-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ninot-info-card {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.ficha-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}

.ninot-data-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ninot-data-list li {
    margin-bottom: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.data-label {
    font-weight: 700;
    color: #222;
}

.data-link {
    color: #C8A951;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.data-link:hover {
    color: #111;
    text-decoration: underline;
}

.data-value-gold {
    color: #C8A951;
    font-weight: 800;
}

.ficha-divider {
    margin-top: 40px;
    height: 1px;
    background: #eee;
    width: 100%;
}

@media (max-width: 900px) {
    .ninot-detail-layout {
        grid-template-columns: 1fr;
    }
    .ninot-info-card {
        padding: 30px;
    }
}