/* ============================================================
   dino/hotel-listings — frontend styles
   ============================================================ */

.dino-hotel-listings {
    padding: 2rem 0;
}

.dino-hotel-listings__heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a3d2b;
    margin: 0 0 1.25rem;
}

/* Featured hotel card */
.dino-hotel-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    background: #fff;
    margin-bottom: 1.25rem;
}
.dino-hotel-card--featured {
    display: flex;
    border: 2px solid #16a34a;
}

.dino-hotel-card__img {
    width: 260px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.dino-hotel-card__body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.dino-hotel-card__badge {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #16a34a;
}

.dino-hotel-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a3d2b;
    margin: 0;
}

.dino-hotel-card__stars { font-size: .9rem; }

.dino-hotel-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
}

.dino-hotel-listings__no-config,
.dino-hotel-listings__placeholder {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: .85rem;
    color: #6b7280;
}

@media (max-width: 600px) {
    .dino-hotel-card--featured { flex-direction: column; }
    .dino-hotel-card__img { width: 100%; height: 200px; }
}

/* Editor */
.dino-hotel-listings-editor .dino-hotel-listings__placeholder {
    margin-top: .75rem;
}
