:root {
    /* Variables from File 1 */
    --clr-p: #ff9f35;
    --clr-s: #fa8201;
    --clr-dark: #313131;
    --clr-grey: #4c4c4c;
    --clr-light: #f8f8f8;
    --clr-white: #ffffff;
    --clr-line: #eeeeee;

    /* Variables from File 2 */
    --bg: #F0F0F0;
    --muted: #555555;
    --link: #94141c;
    --border: #333333;
    --code-bg: #f6f8fa;
}

/* ==========================================================================
   Styles from Second File (Placed first so it can be overwritten)
   ========================================================================== */

/* Basic reset */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.7; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
p { margin: 0 0 1rem; }

.container { width: min(92%, 780px); margin-inline: auto; }

/* Header */
header {
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92%, 780px);
  margin-inline: auto;
}
.site-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--link);
}
.return-link a {
  font-size: 0.95rem;
  color: var(--link);
  text-decoration: none;
}
.return-link a:hover {
  text-decoration: underline;
}

/* Article */
article { padding: 2rem 0 2.25rem; }
h1, h2, h3 { line-height: 1.25; margin: 1.4rem 0 .6rem; }
h1 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem); margin-top: .5rem; }
h2 { font-size: clamp(1.35rem, 1.2vw + 1rem, 1.7rem); }
h3 { font-size: 1.15rem; }
.meta { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }

/* Figures & images */
figure { margin: 1.2rem 0; }
figure img { width: 100%; height: auto; border-radius: 6px; }
figcaption { color: var(--muted); font-size: .95rem; margin-top: .4rem; }

/* Text elements */
blockquote { border-left: 4px solid var(--border); background: #fafafa; padding: .75rem 1rem; margin: 1rem 0; border-radius: 6px; }
code { background: var(--code-bg); border: 1px solid var(--border); border-radius: 4px; padding: .1rem .3rem; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
pre { background: var(--code-bg); border: 1px solid var(--border); padding: 1rem; overflow: auto; border-radius: 6px; }
pre code { border: 0; padding: 0; background: transparent; }

ul, ol { padding-left: 1.2rem; margin: .2rem 0 1rem; }
li { margin: .2rem 0; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { border: 1px solid var(--border); padding: .6rem .7rem; text-align: left; }
th { background: #fafafa; }

hr { border: 0; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.site-footer .inner { padding: 1.5rem 0; text-align: center; color: var(--muted); }


/* ==========================================================================
   Styles from First File (Placed last so it overrides overlapping rules)
   ========================================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Merriweather', 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: var(--clr-grey);
    background-color: var(--clr-white);
    -webkit-font-smoothing: antialiased;
}

.limit-width { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.top-nav-zone {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-line);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex { display: flex; justify-content: center; }

@media (min-width: 768px) { .nav-flex { justify-content: flex-start; } }

.site-branding a {
    font-size: 24px; font-weight: 700; color: var(--clr-dark);
    text-decoration: none; letter-spacing: 1.5px;
}

.body-padding { padding: 40px 0; }

.text-flow > h1, .text-flow > h2, .text-flow > h3, .text-flow > p, .text-flow > ul, .text-flow > ol {
    text-align: left; max-width: 900px; margin-left: auto; margin-right: auto; margin-bottom: 20px;
}

/* Reduced Heading Sizes */
h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    color: var(--clr-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}
h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(20px, 4vw, 28px);
    color: var(--clr-dark);
    margin: 40px auto 15px;
    border-left: 5px solid var(--clr-p);
    padding-left: 15px;
}
h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    color: var(--clr-dark);
    margin: 25px auto 12px;
}

ul, ol { padding-left: 40px; }
li { margin-bottom: 10px; }

/* --- MOBILE CARD TABLE TRANSFORMATION (Main Listing) --- */
.promo-area { margin: 30px auto 40px; max-width: 900px; }

@media (max-width: 767px) {
    .listing-grid, .listing-grid thead, .listing-grid tbody, .listing-grid tr, .listing-grid td { display: block; }
    .listing-grid thead { display: none; }
    .listing-grid tr {
        margin-bottom: 20px; border: 1px solid var(--clr-line); border-radius: 12px;
        padding: 20px; background: var(--clr-white); box-shadow: 0 4px 12px rgba(0,0,0,0.05); text-align: center;
    }
    .listing-grid td { border: none; padding: 10px 0; }
    .brand-cell { flex-direction: column; gap: 10px; }
    .brand-logo { width: 140px; height: auto; margin: 0 auto; display: block; }
    .action-link { display: block; width: 100%; padding: 15px; }
}

@media (min-width: 768px) {
    .listing-grid { width: 100%; border-collapse: collapse; }
    .listing-grid th { background: var(--clr-dark); color: #fff; padding: 15px; text-align: left; }
    .listing-grid td { padding: 20px 15px; border-bottom: 1px solid var(--clr-line); vertical-align: middle; }
    .brand-cell { display: flex; align-items: center; justify-content: flex-start; }
    .brand-logo { width: 120px; height: auto; display: block; }
}

/* --- DATA SCROLL TABLES (Pros/Cons, Specs) --- */
.scroll-wrap {
    overflow-x: auto;
    margin: 30px auto;
    max-width: 900px;
    border: 1px solid var(--clr-line);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}
.scroll-wrap table { width: 100%; border-collapse: collapse; min-width: 600px; }
.scroll-wrap th { background: var(--clr-light); padding: 15px; text-align: left; font-weight: 700; color: var(--clr-dark); }
.scroll-wrap td { padding: 15px; border-bottom: 1px solid var(--clr-line); vertical-align: top; }

/* Buttons & Footer */
.action-link {
    background: var(--clr-s); color: var(--clr-white); padding: 12px 25px;
    border-radius: 6px; text-decoration: none; font-weight: bold; transition: 0.3s;
    display: inline-block; text-align: center;
}
.action-link:hover { background: var(--clr-p); }

.bottom-zone { background: #181818; color: var(--clr-white); padding: 40px 0; text-align: center; margin-top: 60px; }
.bottom-zone a { color: var(--clr-white); text-decoration: none; }