:root {
  --card-bg: #fdf6e3; /* Light cardstock color */
  --text-color: #333;
  --accent-color: #d33682; /* Magenta-ish red for callsign highlight */
  --border-color: #2c3e50;
  --table-stripe: #eee8d5;
  --link-color: #268bd2;
  --highlight-bg: #fffbf0;
  --card-shadow: 0 4px 6px rgba(0,0,0,0.1);
  --card-hover-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #2c3e50;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Hero Section - QSL Card + Intro */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 3rem;
}

.qsl-card {
  background-color: var(--card-bg);
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  border: 4px solid var(--text-color);
  box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
  position: relative;
  background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
  linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: -2px -2px;
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: flex-start;
}

.intro-block {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border: 4px solid var(--text-color);
  box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
  flex: 1 1 360px;
  min-width: 360px;
  display: flex;
  flex-direction: column;
}

.intro-block h2 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px dashed var(--text-color);
  padding-bottom: 0.5rem;
}

.intro-block p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.intro-block p:last-child {
  margin-bottom: 0;
}

/* Create the "clean" area inside the grid */
.card-inner {
  background-color: var(--card-bg);
  border: 2px solid var(--text-color);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

header {
  text-align: center;
  border-bottom: 2px dashed var(--text-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  margin: 0;
  line-height: 1;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 0px var(--text-color);
}

.subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 0.2rem;
}

.footer-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
}

.card-nav {
  margin-top: 1.5rem;
  text-align: center;
}

.card-nav-link {
  display: inline-block;
  background-color: var(--border-color);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 2px solid var(--border-color);
  transition: all 0.2s;
}

.card-nav-link:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Equipment List Styling */
.equipment-list {
  width: 100%;
  max-width: 1000px; /* Wider for grid */
  margin-bottom: 3rem;
}

.equipment-list h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.equipment-list h3 {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.5rem;
    margin-top: 3rem;
}

/* Radio Grid */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.radio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.radio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.recommended-card {
    border: 2px solid var(--accent-color);
    background-color: var(--highlight-bg);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.card-content {
    padding: 15px 15px 5px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content-extras {
    padding: 0 15px 15px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.specs-link {
    text-decoration: none;
    color: inherit;
    margin-top: auto;
    display: block;
}

.card-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.2;
    border-bottom: none;
}

.brand {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 2px;
}

.model {
    display: block;
    font-weight: bold;
    color: var(--text-color);
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.review-note {
    font-style: italic;
    font-size: 0.85rem;
    color: #555;
    background-color: rgba(0,0,0,0.03);
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    border-left: 3px solid var(--accent-color);
}

.specs {
    margin-top: auto;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.spec-tag {
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #555;
    font-weight: 500;
}

.spec-power {
    background: var(--border-color);
    color: #fff;
    font-weight: bold;
}

.spec-waterproof {
    background: #3498db;
    color: #fff;
}

.spec-usbc {
    background: #27ae60;
    color: #fff;
}

.spec-gps {
    background: #9b59b6;
    color: #fff;
}

.spec-noaa {
    background: #e67e22;
    color: #fff;
}

.spec-bluetooth {
    background: #0082fc;
    color: #fff;
}

/* Accessories Table (White bg for contrast against dark body) */
.equipment-list table {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
  box-shadow: var(--card-shadow);
}

th, td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

th {
  background-color: var(--border-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

tr:nth-child(even) {
  background-color: var(--table-stripe);
}

/* --------------------------------------------------------- */
/* DETAIL PAGE STYLES */
/* --------------------------------------------------------- */

.breadcrumb {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed #fff;
}

.breadcrumb a:hover {
    border-bottom-style: solid;
}

.radio-detail {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.detail-header {
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.detail-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.badge-large {
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-container-large {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container-large img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: block;
    padding: 12px 20px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #b02c6b;
}

.btn-secondary {
    background-color: var(--border-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #34495e;
}

.operator-review {
    background: var(--highlight-bg);
    border-left: 5px solid var(--accent-color);
    margin: 0 0 2rem 0;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
}

.operator-review footer {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #777;
    font-style: normal;
    text-transform: uppercase;
}

.detail-content h2 {
    color: var(--border-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.detail-content h2:first-of-type {
    margin-top: 0;
}

/* Spec List (Description List) */
.spec-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 10px;
    margin: 1rem 0;
}

.spec-list dt {
    font-weight: bold;
    color: #666;
}

.spec-list dd {
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.feature-list li {
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 3px solid #ccc;
}

/* Frequency Table */
.freq-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.freq-table th {
    background: #f0f0f0;
    color: #333;
    border-bottom: 2px solid #ccc;
    font-weight: bold;
}

.freq-table td {
    border-bottom: 1px solid #eee;
}

.mode-tag {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    color: #fff;
    background: #999;
}

.mode-tx-rx { background: #e74c3c; } /* Red for TX */
.mode-rx { background: #27ae60; } /* Green for RX */

.regulatory-section {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.regulatory-section h3 {
    font-size: 1rem;
    color: #555;
    border: none;
    margin-bottom: 0.5rem;
}

.regulatory-section a {
    color: var(--link-color);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------- */
/* MOBILE OVERHAUL */
/* --------------------------------------------------------- */

@media (max-width: 768px) {
    /* Aggressive overflow prevention */
    html, body {
        max-width: 100%;
    }

    * {
        box-sizing: border-box;
    }

    body {
        padding: 10px;
        width: 100%;
        display: block; /* Switch from flex to block for simpler mobile stacking */
    }

    /* Images */
    img, picture, svg, video {
        max-width: 100%;
        height: auto;
    }

    .radio-detail {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        border-radius: 0; /* Cleaner look on small screens */
    }

    .station-header {
        padding: 0.75rem;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .station-header .back-link {
        align-self: stretch;
        text-align: center;
        width: 100%;
    }

    .datasheet-header h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.1;
    }

    .datasheet-top-line {
        flex-direction: column;
        gap: 5px;
    }

    .detail-grid {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .img-container-large {
        padding: 10px;
    }

    .spec-list {
        grid-template-columns: 1fr;
        row-gap: 5px;
    }

    .spec-list dt {
        margin-top: 10px;
        border-bottom: 1px dashed #eee;
    }

    .spec-list dt:first-child {
        margin-top: 0;
    }

    /* Adjust stamp for mobile */
    .stamp {
        position: relative;
        left: auto;
        bottom: auto;
        display: block;
        width: fit-content;
        margin-bottom: 10px;
        font-size: 0.8rem;
        transform: rotate(-2deg);
    }

    .datasheet-status-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .updated-date {
        align-self: flex-end;
    }

    /* Handle long strings like FCC IDs */
    .regulatory-section p, .meta-data {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Hero Section Mobile */
    .hero-section {
        gap: 1.5rem;
    }

    .intro-block {
        box-shadow: 5px 5px 0px rgba(0,0,0,0.3);
        flex-basis: 100%;
    }

    /* QSL Card Mobile Fixes */
    .qsl-card {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-shadow: 5px 5px 0px rgba(0,0,0,0.3);
    }

    .card-inner {
        padding: 1rem;
    }

    h1 {
        /* Use viewport-relative sizing to "shrink to fit" */
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: 0.05em;
        text-shadow: 1px 1px 0px var(--text-color);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Table Mobile Optimizations */
    .table-responsive {
        max-width: 100%;
        display: block;
        overflow-x: auto;
        border: 1px solid #eee;
    }

    .freq-table {
        width: 100%;
        min-width: 300px; /* Ensure it doesn't crush too small */
    }

    .freq-table th, .freq-table td {
        padding: 6px 4px;
        font-size: 0.75rem;
        white-space: nowrap; /* Prevent ugly wrapping */
    }
}

/* --------------------------------------------------------- */
/* DATASHEET THEME HEADER */
/* --------------------------------------------------------- */

.station-header {
    width: 100%;
    max-width: 1000px;
    background-color: var(--text-color);
    color: var(--card-bg);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Connected to the card */
    border-radius: 4px 4px 0 0;
    border: 4px solid var(--text-color);
    border-bottom: none;
    box-sizing: border-box;
    /* Ensure it doesn't shrink smaller than the card content */
    min-width: 0; 
}

.station-id {
    display: flex;
    flex-direction: column;
}

.callsign {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.division {
    font-size: 0.7rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.back-link {
    color: var(--card-bg);
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid var(--card-bg);
    padding: 5px 10px;
    border-radius: 2px;
    transition: all 0.2s;
}

.back-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Update Radio Detail to connect with header */
.radio-detail.datasheet-theme {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 4px solid var(--text-color);
    box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
}

.datasheet-header {
    border-bottom: 4px solid var(--text-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.datasheet-top-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-family: monospace;
}

.meta-data {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.datasheet-header h1 {
    font-size: 3rem;
    margin: 10px 0;
    text-transform: uppercase;
    color: var(--text-color);
}

.datasheet-status-bar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 1rem;
    position: relative;
    min-height: 1.2rem; /* Ensure some vertical presence for the date */
}

.stamp {
    position: absolute;
    left: 0;
    bottom: -5px;
    z-index: 10;
    pointer-events: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 15px;
    border: 3px solid;
    display: inline-block;
    letter-spacing: 2px;
    transform: rotate(-3deg);
    mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=');
}

.stamp.recommended {
    color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 4px;
}

.stamp.standard {
    color: var(--text-color);
    border-color: var(--text-color);
    opacity: 0.6;
}

.updated-date {
    font-size: 0.7rem;
    color: #999;
}

/* --------------------------------------------------------- */
/* BLOG STYLES */
/* --------------------------------------------------------- */

.blog-listing {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--card-shadow);
    border: 4px solid var(--text-color);
    border-top: none;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--card-hover-shadow);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.blog-card-meta time {
    color: #666;
    font-family: monospace;
}

.blog-tag {
    background: var(--border-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.3;
}

.blog-excerpt {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

/* Blog Post Single */
.blog-post {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--card-shadow);
    border: 4px solid var(--text-color);
    border-top: none;
}

.blog-post .station-header + & {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.blog-post-tags {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.blog-post-content {
    line-height: 1.7;
    font-size: 1rem;
}

.blog-post-content h2 {
    color: var(--border-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.blog-post-content h3 {
    color: var(--text-color);
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.blog-post-content p {
    margin: 1rem 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
    background: var(--highlight-bg);
    border-left: 4px solid var(--accent-color);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
}

.blog-post-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-post-content pre {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.blog-post-content a {
    color: var(--link-color);
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 2px dashed #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-signature {
    font-family: monospace;
}

.signature-callsign {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Blog Mobile Styles */
@media (max-width: 768px) {
    .blog-listing,
    .blog-post {
        padding: 1rem;
        border-radius: 0;
    }

    .blog-card-link {
        padding: 1rem;
    }

    .blog-card h2 {
        font-size: 1.1rem;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------- */
/* CATALOG PAGE STYLES */
/* --------------------------------------------------------- */

.catalog-section {
    margin-bottom: 3rem;
}

.catalog-section h2 {
    color: var(--border-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-section:first-of-type h2 {
    margin-top: 0;
}

.section-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.catalog-grid {
    margin-top: 1rem;
}