/* --- SCOPED CSS FOR GUEST HOUSE SELECTION --- */

.gh-wrapper {
    font-family: 'Inter', sans-serif;
    margin-bottom: 32px;
}

/* Header Section */
.gh-header-text {
    margin-bottom: 24px;
}

    .gh-header-text h1 {
        font-size: 24px;
        font-weight: 700;
        color: #1f2937; /* Dark slate */
        margin: 0 0 8px 0;
    }

    .gh-header-text p {
        font-size: 14px;
        color: #4b5563; /* Muted gray */
        margin: 0;
    }

/* Cards Grid */
.gh-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Individual Card */
.gh-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .gh-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

/* Card Image */
.gh-card-img-wrap {
    width: 100%;
    height: 280px; /* Fixed height for uniformity */
    background-color: #f3f4f6;
}

    .gh-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Card Content */
.gh-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gh-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #374151; /* Dark slate/olive */
    margin: 0 0 16px 0;
}

/* Info List (Address, Phone) */
.gh-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.gh-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

    .gh-info-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        color: #9ca3af;
        margin-top: 2px; /* Aligns icon with the first line of text */
    }

/* Action Button */
.gh-btn-select {
    width: 100%;
    background-color: #3372CF; /* Matching your primary blue */
    color: #ffffff;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    font-family: inherit;
}

    .gh-btn-select:hover {
        background-color: #2563eb;
    }

/* Responsive Design */
@media (max-width: 900px) {
    .gh-card-img-wrap {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gh-cards-grid {
        grid-template-columns: 1fr;
    }

    .gh-card-img-wrap {
        height: 260px;
    }
}
