.sauna-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sauna-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sauna-tile {
    display: flex;
    background-color: var(--section-bg);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.sauna-image-container {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
}

.sauna-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sauna-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--image-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
}

.no-photo .sauna-image-placeholder::before {
    content: "無照片";
}

.sauna-content {
    display: flex;
    flex-grow: 1;
    padding: 1.5rem;
}

.sauna-info {
    flex-grow: 1;
}

.sauna-name {
    color: var(--rainbow-purple);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.sauna-rating {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sauna-rating .fa-star {
    color: #ddd;
}

.sauna-rating .fa-star.filled {
    color: #ffc107;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

.sauna-memo {
    color: var(--dark-text);
    line-height: 1.5;
}

.sauna-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
    min-width: 150px;
}

.sauna-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.sauna-button.website {
    background-color: var(--rainbow-purple);
    color: white;
}

.sauna-button.map {
    background-color: #4285F4;
    color: white;
}

.sauna-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sauna-tile {
        flex-direction: column;
    }
    
    .sauna-image-container {
        width: 100%;
        height: 180px;
    }
    
    .sauna-content {
        flex-direction: column;
        padding: 1rem;
    }
    
    .sauna-buttons {
        flex-direction: row;
        margin-left: 0;
        margin-top: 1rem;
    }
}