/* Widget Styles for Vremont Guzman - Scoped to avoid conflicts */

.vremont-guzman-widget-container {
    font-family: 'Montserrat', sans-serif;
    /* Asumiendo que la fuente se carga externamente o hereda */
    max-width: 1260px;
    margin: 0 auto;
}

.vremont-guzman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.vremont-guzman-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
    /* Reset alignment if needed */
}

.vremont-guzman-card:hover {
    transform: translateY(-5px);
}

.vremont-guzman-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.vremont-guzman-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vremont-guzman-no-image {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.vremont-guzman-info {
    padding: 15px;
}

.vremont-guzman-title {
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.vremont-guzman-title a {
    font-size: 16px;
    /* Similar to original 0.7em relative to container, or hardcoded for consistency */
    font-weight: 700;
    color: #323B3B;
    text-decoration: none;
    transition: color 0.2s;
}

.vremont-guzman-title a:hover {
    color: #ED7600;
}

.vremont-guzman-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.vremont-guzman-price {
    font-size: 24px;
    font-weight: bold;
    color: #0042FF;
    margin: 10px 0;
}

.vremont-guzman-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.vremont-guzman-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .vremont-guzman-grid {
        grid-template-columns: 1fr;
    }
}