﻿.home-section {
    margin-bottom: 4rem;
}

.home-section-heading {
    margin-bottom: 2.5rem;
}

.home-banner-wrapper {
    width: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
}

.home-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .home-category-link:hover {
        transform: translateY(-2px);
        opacity: 0.95;
    }

.home-category-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 0.75rem auto;
    display: block;
}

@media (min-width: 992px) {
    .home-category-image {
        width: 90px;
        height: 90px;
    }
}

.home-listing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4e6ef;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-listing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    }

.home-listing-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
    background-color: #ffffff;
    border: 1px solid #e4e6ef;
    padding: 6px;
}

.home-listing-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0.45rem;
    background-color: #ffffff;
}

.home-listing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin-top: 0.9rem;
}

.home-listing-title-wrapper {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.35rem;
    padding: 0 2px;
}

.home-listing-title {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    min-height: 2.4em;
    max-height: 2.4em;
    overflow: hidden;
    position: relative;
}

.home-listing-title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    padding-right: 18px;
}

.home-listing-price-wrapper {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-listing-price {
    display: inline-block;
    line-height: 1.1;
}

.home-stats-section {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

.home-stats-heading {
    margin-bottom: 2.5rem;
}

.home-stats-grid {
    margin-bottom: 0;
}

.home-testimonial-card {
    background: #ffffff;
    border: 1px solid #e4e6ef;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}
