:root {
  /* Premium Localized Identity Token Engine */
  --brand-primary: #002a54;
  --brand-secondary: #0072ce;
  --brand-accent: #f2f8fe;
  --brand-success: #15803d;

  /* System Neutral Surfaces & Elements */
  --color-bg-main: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-border: #e2e8f0;

  /* Precision Layout Metrics Matrix */
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);

  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.05), 0 8px 10px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   STRUCTURAL RESET
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   TYPOGRAPHY HIERARCHY
   ========================================================================== */

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.35rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   STRUCTURAL CONTENT CONTAINERS
   ========================================================================== */

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

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-alt {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--color-bg-alt);

  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header p {
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* ==========================================================================
   MICRO UI MODULES
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;

  padding: 6px 14px;

  background-color: var(--brand-accent);
  color: var(--brand-secondary);

  border-radius: 999px;

  font-size: 0.825rem;
  font-weight: 600;

  letter-spacing: 0.02em;
  text-transform: uppercase;

  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SPACING UTILITIES
   ========================================================================== */

.flow-xl > * + * {
  margin-top: 2.5rem;
}

.flow-lg > * + * {
  margin-top: 1.25rem;
}

.flow-md > * + * {
  margin-top: 0.85rem;
}

.flow-sm > * + * {
  margin-top: 0.4rem;
}

/* ==========================================================================
   GRID ENGINE
   ========================================================================== */

.grid-system {
  display: grid;
  gap: 2rem;
}

/* Generic Grid Presets */

.rows-1,
.cols-1 {
  grid-template-columns: 1fr;
}

.rows-2,
.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rows-3,
.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rows-4,
.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Two-column profile/sidebar layout */

.grid-aside-layout {
  grid-template-columns: minmax(0, 2.4fr) minmax(280px, 1fr);
}

/* Category Directory Specific Grid */

.category-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 2rem;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.btn-group {
  display: flex;
  flex-wrap: wrap;

  gap: 1rem;
  align-items: center;

  margin-top: 2rem;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0.9rem 2rem;

  font-size: 0.95rem;
  font-weight: 600;

  border-radius: var(--radius-md);
  border: 2px solid transparent;

  cursor: pointer;

  transition: all 0.2s ease;

  text-decoration: none;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #ffffff;

  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--brand-secondary);

  transform: translateY(-1px);

  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;

  border-color: var(--color-border);

  color: var(--brand-primary);
}

.btn-outline:hover {
  border-color: var(--brand-primary);

  background-color: var(--brand-accent);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION ARCHITECTURE
   ========================================================================== */

header {
  position: sticky;

  top: 0;

  background-color: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--color-border);

  z-index: 1000;

  padding: 1.25rem 0;
}

.navbar {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 2rem;
}

.logo {
  display: flex;

  align-items: center;

  gap: 0.75rem;

  font-size: 1.35rem;

  font-weight: 800;

  color: var(--brand-primary);

  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;

  object-fit: contain;
}

nav ul {
  display: flex;

  align-items: center;

  gap: 2.25rem;

  list-style: none;
}

nav a {
  font-size: 0.95rem;

  font-weight: 500;

  color: var(--color-text-muted);

  text-decoration: none;

  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--brand-primary);
}

/* ==========================================================================
   HERO SYSTEM
   ========================================================================== */

.hero {
  padding: clamp(4rem, 10vw, 8rem) 0;

  background: radial-gradient(circle at 90% 10%, #e2e8f0 0%, #ffffff 60%);
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(320px, 0.8fr);

  gap: 4rem;

  align-items: center;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* ==========================================================================
   GLOBAL BILLBOARD ADVERTISEMENT SLOTS
   ========================================================================== */

.billboard-ad {
  background-color: #0f172a;

  color: #f8fafc;

  border-radius: var(--radius-lg);

  padding: 1.5rem;

  text-align: center;

  position: relative;

  overflow: hidden;

  border: 1px solid var(--color-border);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  min-height: 140px;
}

.billboard-ad::before {
  content: "SPONSORED PLACEMENT";

  font-size: 0.65rem;

  font-weight: 700;

  color: #64748b;

  letter-spacing: 0.1em;

  margin-bottom: 0.5rem;
}

.billboard-ad h4 {
  color: #ffffff;
}

/* ==========================================================================
   BILLBOARD VARIATIONS
   ========================================================================== */

.billboard-text-only {
  max-width: 750px;

  margin-inline: auto;
}

.billboard-image-only {
  padding: 0;

  height: 160px;
}

.billboard-image-only img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.billboard-image-only:hover img {
  transform: scale(1.015);
}

.billboard-hybrid-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 2.5rem;

  align-items: center;

  text-align: left;

  width: 100%;
}

.billboard-hybrid-grid::before {
  display: none;
}

.billboard-hybrid-content {
  position: relative;

  padding-left: 1.5rem;

  border-left: 3px solid var(--brand-secondary);
}

/* ==========================================================================
   CARD FRAMEWORK
   ========================================================================== */

.card {
  background-color: var(--color-bg-main);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  padding: 2.5rem;

  box-shadow: var(--shadow-sm);

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  height: 100%;
}

.card-body {
  flex-grow: 1;

  display: flex;

  flex-direction: column;
}

.business-desc {
  margin-bottom: 1.25rem;
}

.card-hover {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);

  box-shadow: var(--shadow-lg);

  border-color: var(--brand-secondary);
}

.card-icon {
  width: 48px;

  height: 48px;

  border-radius: var(--radius-md);

  background-color: var(--brand-accent);

  display: grid;

  place-items: center;

  font-size: 1.35rem;
}

/* Optional featured card support */

.card-featured {
  border: 2px solid var(--brand-secondary);

  background: linear-gradient(135deg, var(--brand-accent), #ffffff);
}

/* ==========================================================================
   IMAGE FIRST BUSINESS DIRECTORY CARDS
   ========================================================================== */

.business-card {
  background-color: var(--color-bg-main);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  overflow: hidden;

  display: flex;

  flex-direction: column;

  box-shadow: var(--shadow-sm);

  height: 100%;
}

.business-card-image {
  display: block;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background-color: var(--color-bg-alt);
}

.business-card-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.business-card:hover .business-card-image img {
  transform: scale(1.04);
}

.business-card-content {
  padding: 2rem;

  display: flex;

  flex-direction: column;

  flex-grow: 1;
}

.business-card-content h3 {
  margin-bottom: 0.75rem;
}

.business-card .business-desc {
  margin-bottom: 1.5rem;
}

.business-card .business-meta {
  margin-top: auto;
}

.business-card .card-footer {
  padding: 0 2rem 2rem;
}

.placeholder-image img {
  filter: brightness(0.85);
}

@media (max-width: 640px) {
  .business-card-content {
    padding: 1.5rem;
  }

  .business-card .card-footer {
    padding: 0 1.5rem 1.5rem;
  }
}

/* ==========================================================================
   BUSINESS META CLUSTERS
   ========================================================================== */

.business-meta {
  display: flex;

  flex-direction: column;

  gap: 0.65rem;

  margin-top: auto;

  padding-bottom: 1.5rem;

  border-bottom: 1px dashed var(--color-border);
}

.meta-item {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  color: var(--color-text-muted);

  font-size: 0.9rem;

  text-decoration: none;

  transition: color 0.15s ease;

  width: fit-content;
}

.meta-item:hover {
  color: var(--brand-secondary);
}

.meta-item .icon {
  font-size: 1rem;

  flex-shrink: 0;
}

.card-footer {
  padding-top: 1.25rem;
}

/* ==========================================================================
   DIRECTORY STRUCTURED COMPONENTS
   ========================================================================== */

.listing-wrapper {
  display: flex;

  flex-direction: column;

  gap: 1.5rem;
}

.directory-row {
  display: flex;

  gap: 2.5rem;

  align-items: center;

  padding: 2rem;

  background-color: var(--color-bg-main);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  position: relative;

  transition: all 0.2s ease;
}

.directory-row:hover {
  border-color: var(--brand-secondary);

  box-shadow: var(--shadow-md);
}

.row-logo-frame {
  width: 140px;

  height: 140px;

  border-radius: var(--radius-md);

  border: 1px solid var(--color-border);

  background-color: #ffffff;

  display: grid;

  place-items: center;

  padding: 1rem;

  flex-shrink: 0;
}

.row-logo-frame img {
  max-height: 100%;

  object-fit: contain;
}

.row-body-info {
  flex: 1;
}

.meta-details-cluster {
  display: flex;

  flex-wrap: wrap;

  gap: 2rem;

  font-size: 0.875rem;

  color: var(--color-text-muted);
}

.meta-details-cluster span {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;
}

/* ==========================================================================
   PREMIUM FEATURED DIRECTORY CONFIGURATION
   ========================================================================== */

.row-premium-featured {
  border: 2px solid var(--brand-secondary);

  background: linear-gradient(90deg, var(--brand-accent) 0%, #ffffff 100%);
}

.row-premium-featured::after {
  content: "FEATURED PARTNER";

  position: absolute;

  top: 0;

  right: 2rem;

  transform: translateY(-50%);

  background-color: var(--brand-secondary);

  color: #ffffff;

  font-size: 0.65rem;

  font-weight: 700;

  padding: 4px 12px;

  border-radius: var(--radius-sm);

  letter-spacing: 0.05em;
}

/* ==========================================================================
   DIRECTORY FILTER CONTROLS
   ========================================================================== */

.filter-pills {
  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

  margin-bottom: 3rem;
}

.filter-item {
  padding: 0.6rem 1.25rem;

  background-color: var(--color-bg-main);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-md);

  font-size: 0.9rem;

  font-weight: 500;

  cursor: pointer;

  transition: all 0.2s ease;
}

.filter-item:hover,
.filter-item.active {
  background-color: var(--brand-primary);

  color: #ffffff;

  border-color: var(--brand-primary);
}

/* ==========================================================================
   PROFILE PAGE MODULES
   ========================================================================== */

.profile-meta-table {
  width: 100%;

  border-collapse: collapse;
}

.profile-meta-table tr {
  border-bottom: 1px solid var(--color-border);
}

.profile-meta-table tr:last-child {
  border-bottom: none;
}

.profile-meta-table td {
  padding: 1rem 0;

  font-size: 0.95rem;
}

.profile-meta-table td:last-child {
  text-align: right;

  font-weight: 600;

  color: var(--brand-primary);
}

.profile-intro {
  font-size: 1.25rem;

  line-height: 1.7;
}

.profile-status {
  color: var(--brand-success);

  font-weight: 700;
}

/* ==========================================================================
   MARKETING FEATURE LISTS
   ========================================================================== */

.marketing-features {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin: 1.5rem 0 2rem;
  padding: 0;
}

.marketing-features li {
  display: flex;

  align-items: flex-start;
  gap: 0.75rem;

  line-height: 1.6;
}

.marketing-features span {
  color: var(--brand-success);

  font-weight: 700;

  flex-shrink: 0;

  margin-top: 0.1rem;
}

/* Add spacing before a CTA button that follows the feature list */
.marketing-features + .btn {
  margin-top: 0.5rem;
}

/* ==========================================================================
   HERO FEATURED BUSINESS CARD
   ========================================================================== */

.hero-image-wrapper {
  display: flex;

  flex-direction: column;

  width: 100%;

  background: #ffffff;

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-lg);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  height: 100%;
}

.hero-image-wrapper:hover {
  transform: translateY(-4px);

  box-shadow: 0 24px 36px rgba(15, 23, 42, 0.12);
}

.hero-image-wrapper a {
  text-decoration: none;
}

.hero-accent-graphic {
  width: 100%;

  display: block;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.hero-image-wrapper:hover .hero-accent-graphic {
  transform: scale(1.04);
}

/* ==========================================================================
   HERO ADVERTISEMENT FEATURE PANEL
   ========================================================================== */

.hero-ad-panel {
  padding: 2.5rem;

  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );

  color: #ffffff;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}

.hero-ad-panel h3 {
  color: #ffffff;
}

.hero-ad-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-ad-panel .hero-card-badge {
  display: inline-flex;

  background: #ffffff;

  color: var(--brand-primary);

  padding: 0.35rem 0.75rem;

  border-radius: 999px;

  font-size: 0.75rem;

  font-weight: 700;

  margin-bottom: 1rem;
}

/* ==========================================================================
   HERO CARD CONTENT
   ========================================================================== */

.hero-card-content {
  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 1.75rem;
}

.hero-card-content h3 {
  margin-bottom: 0.75rem;

  color: var(--brand-primary);

  font-size: 1.45rem;

  line-height: 1.3;
}

.hero-card-content p {
  margin-bottom: 1.5rem;

  color: var(--color-text-muted);

  line-height: 1.7;

  font-size: 0.98rem;
}

/* ==========================================================================
   HERO BADGE
   ========================================================================== */

.hero-card-badge {
  display: inline-flex;

  align-items: center;

  align-self: flex-start;

  margin-bottom: 1rem;

  padding: 0.45rem 0.85rem;

  background: var(--brand-accent);

  color: var(--brand-secondary);

  border-radius: 999px;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

/* ==========================================================================
   HERO BUSINESS META
   ========================================================================== */

.hero-business-meta {
  display: flex;

  flex-direction: column;

  gap: 0.65rem;

  margin-bottom: 1.5rem;
}

.hero-business-meta span {
  display: flex;

  align-items: center;

  gap: 0.6rem;

  color: var(--color-text-muted);

  font-size: 0.92rem;
}

.hero-business-meta i,
.hero-business-meta svg {
  color: var(--brand-secondary);

  flex-shrink: 0;
}

/* ==========================================================================
   HERO CTA
   ========================================================================== */

.hero-card-content .btn {
  margin-top: auto;

  width: 100%;
}

/* ==========================================================================
   OPTIONAL HERO FOOTER
   ========================================================================== */

.hero-card-footer {
  margin-top: 1rem;

  padding-top: 1rem;

  border-top: 1px solid var(--color-border);

  font-size: 0.85rem;

  color: var(--color-text-muted);

  text-align: center;
}

/* ==========================================================================
   OPTIONAL RATING SYSTEM
   ========================================================================== */

.hero-rating {
  display: flex;

  align-items: center;

  gap: 0.4rem;

  margin-bottom: 1rem;

  color: #eab308;

  font-size: 0.95rem;

  font-weight: 600;
}

.hero-rating small {
  color: var(--color-text-muted);

  font-weight: 500;
}

/* ==========================================================================
   GLOBAL FOOTER ARCHITECTURE
   ========================================================================== */

footer {
  background-color: #0f172a;

  color: #e2e8f0;

  padding: 5rem 0 3rem;

  border-top: 4px solid var(--brand-primary);

  line-height: 1.6;
}

footer h3 {
  color: #ffffff;

  font-size: 1.1rem;

  font-weight: 600;

  margin-bottom: 1.25rem;
}

footer p {
  margin: 0;

  color: #cbd5e1;
}

footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer a {
  color: #94a3b8;

  text-decoration: none;

  display: inline-block;

  transition: color 0.2s ease;
}

footer a:hover {
  color: #38bdf8;
}

.footer-base {
  margin-top: 5rem;

  padding-top: 2rem;

  border-top: 1px solid #1e293b;

  text-align: center;

  font-size: 0.875rem;

  color: #64748b;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2.5rem;
}

/* ==========================================================================
   BUSINESS PROFILE PAGE COMPONENTS
   Independent layout to prevent spacing conflicts
   ========================================================================== */

.profile-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 2.2fr)
    minmax(280px, 1fr);

  gap: 3rem;

  align-items: start;
}

.profile-main {
  min-width: 0;
}

.profile-header {
  margin-bottom: 3rem;
}

.profile-section {
  margin-top: 3rem;
}

.profile-section h2 {
  margin-bottom: 1rem;
}

.profile-sidebar {
  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  min-width: 0;
}

.profile-card {
  background: var(--color-bg-main);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-lg);

  padding: 2rem;

  box-shadow: var(--shadow-sm);
}

.profile-card h3 {
  margin-bottom: 1rem;
}

.profile-card .btn {
  margin-top: 1.25rem;
}

.contact-list {
  display: flex;

  flex-direction: column;

  gap: 0.75rem;

  margin-bottom: 1rem;
}

.contact-list a {
  display: flex;

  align-items: center;

  gap: 0.75rem;

  color: var(--color-text-muted);

  text-decoration: none;

  font-size: 0.95rem;
}

.contact-list a:hover {
  color: var(--brand-secondary);
}

.profile-meta-table td:first-child {
  color: var(--color-text-muted);
}

/* ==========================================================================
   CATEGORY PAGES WITHOUT SIDEBAR
   ========================================================================== */

.listing-wrapper {
  width: 100%;
}

.listing-wrapper .directory-row {
  width: 100%;
}

.directory-row .btn {
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE SYSTEM
   ========================================================================== */

/* Tablet */

@media (max-width: 968px) {
  .hero-grid,
  .grid-aside-layout,
  .profile-layout {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rows-3,
  .rows-4,
  .cols-3,
  .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-wrapper {
    max-width: 650px;

    margin-inline: auto;
  }

  .hero-card-content {
    padding: 1.5rem;
  }

  .profile-sidebar {
    max-width: 650px;
  }
}

/* Small tablet */

@media (max-width: 768px) {
  .grid-system.rows-2,
  .grid-system.cols-2 {
    grid-template-columns: 1fr;
  }

  .billboard-hybrid-grid {
    grid-template-columns: 1fr;

    gap: 1.5rem;

    text-align: center;
  }

  .billboard-hybrid-content {
    padding-left: 0;

    padding-top: 1rem;

    border-left: none;

    border-top: 2px solid var(--brand-secondary);
  }

  .directory-row {
    gap: 1.5rem;
  }

  .directory-row .btn {
    width: 100%;
  }

  .profile-card {
    padding: 1.5rem;
  }
}

/* Mobile */

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

  .navbar {
    flex-direction: column;

    gap: 1.5rem;
  }

  nav ul {
    gap: 1.25rem;

    flex-wrap: wrap;

    justify-content: center;
  }

  .directory-row {
    flex-direction: column;

    text-align: center;

    padding: 2rem 1.25rem;

    align-items: center;
  }

  .row-body-info {
    width: 100%;
  }

  .meta-details-cluster {
    justify-content: center;

    gap: 1rem;

    flex-direction: column;
  }

  .rows-2,
  .rows-3,
  .rows-4,
  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }

  .hero-card-content {
    padding: 1.25rem;
  }

  .hero-card-content h3 {
    font-size: 1.25rem;
  }

  .hero-card-content p {
    font-size: 0.95rem;
  }

  .profile-header {
    margin-bottom: 2rem;
  }

  .profile-section {
    margin-top: 2rem;
  }

  .profile-sidebar {
    width: 100%;
  }
}
