html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.products-section {
    padding-bottom: 5rem;
}

.site-footer {
    padding: 1.5rem 1.5rem;
}

.banner-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('https://picsum.photos/1920/600?image=1018');
    background-size: cover;
    background-position: center;
}

.banner-hero .hero-body {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
}

.banner-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-text .subtitle {
    margin-bottom: 0;
}

.garsonix-logo {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.product-card {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.product-screenshot {
    flex: 0 0 55%;
    overflow: hidden;
    margin: 0;
}

.product-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.product-text {
    flex: 1 1 auto;
    overflow: hidden;
    padding: 1rem 1.25rem;
}

.product-text .title {
    margin-bottom: 0.25rem;
}

.product-text .subtitle {
    margin-bottom: 0.5rem;
}

.archive-card {
    display: block;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: inherit;
}
