.de-wrapper {
    width: 100%;
}

.de-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.de-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}

.de-card-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin-bottom: 16px;
    text-decoration: none;
}

.de-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.de-no-logo {
    background: #f7f7f7;
    color: #666;
    border-radius: 8px;
    padding: 20px;
}

.de-card-title {
    margin: 0 0 10px;
    font-size: 20px;
}

.de-card-title a {
    text-decoration: none;
}

.de-card-location,
.de-card-phone,
.de-card-web {
    margin: 8px 0;
}

.de-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #2b6cb0;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
}

.de-button:hover {
    background: #1f4f80;
}

.de-detail {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.de-detail-header {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.de-detail-logo-wrap {
    flex: 0 0 220px;
}

.de-detail-logo {
    max-width: 220px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.de-detail-title {
    margin: 0 0 8px;
    font-size: 30px;
}

.de-detail-location {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.de-detail-box {
    margin-top: 20px;
}

.de-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.de-detail-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.de-button-back {
    background: #555;
}

.de-button-back:hover {
    background: #333;
}

.de-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.de-search-form input,
.de-search-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 200px;
}

.de-search-form button {
    padding: 10px 16px;
    background: #2b6cb0;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.de-search-form button:hover {
    background: #1f4f80;
}


/* CONTENEDOR GENERAL */
.de-detail {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
}

/* HEADER */
.de-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.de-detail-logo {
    max-width: 140px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.de-detail-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.de-detail-location {
    color: #777;
    font-size: 16px;
}

/* CONTENIDO EN DOS COLUMNAS */
.de-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* BLOQUE INFORMACIÓN */
.de-detail-main {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.de-detail-main h3 {
    margin-bottom: 15px;
}

.de-detail-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.de-detail-main li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* BLOQUE CONTACTO */
.de-detail-contacto {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}

.de-detail-contacto h3 {
    margin-bottom: 15px;
}

.de-detail-contacto p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* BOTÓN WEB */
.de-btn-web {
    display: inline-block;
    padding: 10px 16px;
    background: #2b6cb0;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.de-btn-web:hover {
    background: #1f4f80;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .de-detail-content {
        grid-template-columns: 1fr;
    }
}


.de-detail * {
    box-sizing: border-box;
}

.de-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.de-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* enlaces más limpios */
.de-contact-item a {
    text-decoration: none;
    color: #333;
}

.de-contact-item a:hover {
    color: #2b6cb0;
}

.de-detail-description {
    margin: 30px 0;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    line-height: 1.6;
}

.de-detail-description p {
    margin-bottom: 15px;
}