/* Estilo para página individual del dossier - Flat Design */

.entry-content #dossier-single-container {
    max-width: 1200px;
    margin: 0;
    margin-top: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header del Dossier */
.entry-content .dossier-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.entry-content .dossier-image-container {
    flex: 0 0 400px;
}

.entry-content .dossier-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #f8f9fa;
    border-radius: 0;
}

.entry-content .dossier-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.entry-content .dossier-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.entry-content .dossier-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.entry-content .dossier-description p {
    margin-bottom: 15px;
}

.entry-content .dossier-sku-display {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    display: inline-block;
    width: fit-content;
}


/* Sección de Recursos */
.entry-content .dossier-resources {
    margin-top: 40px;
}

.entry-content .resource-section {
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.entry-content .resource-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Recursos Individuales */
.entry-content .resource-individual {
    padding: 20px;
}

.entry-content .download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.entry-content .download-item:last-child {
    border-bottom: none;
}

.entry-content .item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.entry-content .download-button {
    padding: 8px 20px;
    background: #ff0303;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #ff0303;
    cursor: pointer;
    transition: none;
}

.entry-content .download-button:hover {
    background: #d60000;
    border-color: #d60000;
    color: #fff;
}

/* Recursos Dobles - Tabla */
.entry-content .resource-double {
    overflow-x: auto;
}

.entry-content .downloads-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.entry-content .downloads-table th,
.entry-content .downloads-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.entry-content .downloads-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.entry-content .item-column {
    width: 200px;
    text-align: left;
}

.entry-content .download-column {
    width: auto;
    text-align: right;
}

.entry-content .item-name-cell {
    font-weight: 500;
    color: #333;
    text-align: left;
}

.entry-content .download-cell {
    text-align: right;
    padding-right: 15px;
}

.entry-content .no-download {
    color: #999;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .entry-content #dossier-single-container {
        padding: 0;
    }
    
    .entry-content .dossier-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .entry-content .dossier-image-container {
        flex: none;
    }
    
    .entry-content .dossier-featured-image {
        height: 300px;
    }
    
    .entry-content .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .entry-content .download-button {
        align-self: flex-end;
    }
    
    .entry-content .downloads-table {
        font-size: 14px;
    }
    
    .entry-content .downloads-table th,
    .entry-content .downloads-table td {
        padding: 10px 8px;
    }
    
    .entry-content .item-column {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .entry-content .dossier-featured-image {
        height: 250px;
    }
    
    .entry-content .resource-title {
        font-size: 16px;
        padding: 15px;
    }
    
    .entry-content .downloads-table th,
    .entry-content .downloads-table td {
        padding: 8px 5px;
    }
    
    .entry-content .download-button {
        padding: 6px 12px;
        font-size: 10px;
    }
}