/* =========================================
   ROOT VARIABLES (Inventory Pages)
========================================= */
:root {
    --green-light: #66bb6a;
    --green-mid: #2e7d32;
    --green-dark: #1b5e20;
    --text-green: #336633;
    --accent-green: #339933;
    --max-width: 730px;
}

/* =========================================
   GLOBAL
========================================= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text-green);
    line-height: 1.5;
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 10px 30px;
}

/* =========================================
   DUAL BANNER — RESPONSIVE, NO ENLARGING
========================================= */
.dual-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.dual-banner img {
    width: auto;          /* Prevents stretching */
    max-width: 48%;       /* Keeps them side-by-side at normal size */
    height: auto;
    flex: 0 1 auto;       /* Shrinks if needed, never grows */
}

/* =========================================
   CONTENT
========================================= */
h1 {
    color: var(--text-green);
    margin-top: 20px;
}

img.listing-photo {
    display: block;
    max-width: 100%;   /* allows shrinking */
    width: auto;       /* prevents enlargement */
    height: auto;
    margin: 15px 0;
    border-radius: 15px;
}

a {
    color: var(--accent-green);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #cccccc;
    margin: 25px 0;
}

/* =========================================
   FOOTER
========================================= */
footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 30px;
    color: #555;
}
