/* blog-article-premium.css - Pixel-Perfect Blog Details Design Matching User Mockup */

:root {
  --cc-navy: #07111E;
  --cc-navy2: #0B192C;
  --cc-blue: #0284C7;
  --cc-indigo: #4F46E5;
  --cc-indigo-dark: #4338CA;
  --cc-cyan: #06B6D4;
  --art-text: #334155;
  --art-heading: #0B192C;
  --art-border: #E2E8F0;
  --art-bg-subtle: #F8FAFC;
}

[data-theme="dark"] {
  --art-text: #CBD5E1;
  --art-heading: #F8FAFC;
  --art-border: #334155;
  --art-bg-subtle: #0F172A;
}

/* Reading Progress Bar */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #4F46E5, #0284C7, #06B6D4);
  z-index: 10001;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.6);
}

/* Breadcrumb Navigation */
.art-breadcrumb {
  max-width: 1260px;
  margin: 0 auto;
  padding: 115px 24px 15px;
  font-size: 0.84rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.art-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.art-breadcrumb a:hover {
  color: #4F46E5;
}

.art-breadcrumb span.sep {
  opacity: 0.5;
}

.art-breadcrumb span.curr {
  color: var(--navy2);
  font-weight: 700;
}

[data-theme="dark"] .art-breadcrumb span.curr {
  color: #F1F5F9;
}

/* 2-Column Article Hero / Header (Matching Mockup) */
.art-header-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 10px 24px 45px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.art-hero-content {
  display: flex;
  flex-direction: column;
}

.art-pill-cat {
  display: inline-flex;
  align-items: center;
  background: #4F46E5;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.art-main-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--navy2);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .art-main-title {
  color: #F8FAFC;
}

.art-lead-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.art-meta-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.art-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero Right Featured Visual */
.art-hero-visual {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1.5px solid var(--border);
  padding: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
}

.art-hero-visual img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* Master 2-Column Grid: 1fr Article on Left, 340px Sticky Sidebar on Right */
.art-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

/* Main Article Column */
.art-body {
  color: var(--art-text);
  font-size: 1.05rem;
  line-height: 1.82;
}

.art-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--navy2);
  margin: 44px 0 16px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

[data-theme="dark"] .art-body h2 {
  color: #F8FAFC;
}

.art-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy2);
  margin: 28px 0 12px;
}

[data-theme="dark"] .art-body h3 {
  color: #F1F5F9;
}

.art-body p {
  margin-bottom: 22px;
}

/* Callout Infographic Card */
.art-infographic-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(6, 182, 212, 0.08));
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 22px;
  padding: 30px 36px;
  margin: 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.art-ic-left h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--navy2);
  margin: 0 0 6px;
}

[data-theme="dark"] .art-ic-left h3 {
  color: #F8FAFC;
}

.art-ic-left p {
  color: #4F46E5;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

.art-ic-badge-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-ic-badge-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .art-ic-badge-pill {
  color: #F1F5F9;
}

/* Key Features 6-Card Bento Grid */
.art-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 36px;
}

.art-feature-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.art-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 14px 30px rgba(11, 25, 44, 0.08);
}

.art-fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.08);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.art-fc-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 6px;
}

[data-theme="dark"] .art-fc-title {
  color: #F8FAFC;
}

.art-fc-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Technology Stack 5-Card Grid */
.art-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
}

.art-tech-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.art-tech-card:hover {
  transform: translateY(-3px);
  border-color: #4F46E5;
}

.art-tc-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.art-tc-role {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 4px;
}

[data-theme="dark"] .art-tc-role {
  color: #F1F5F9;
}

.art-tc-stack {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* Cost Breakdown Table */
.art-table-wrap {
  overflow-x: auto;
  margin: 28px 0 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--card);
}

.art-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.art-table th {
  background: rgba(79, 70, 229, 0.06);
  color: var(--navy2);
  font-weight: 800;
  padding: 16px 20px;
  border-bottom: 2px solid var(--border);
}

[data-theme="dark"] .art-table th {
  background: rgba(79, 70, 229, 0.15);
  color: #A5B4FC;
}

.art-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--art-text);
}

.art-table tr:last-child td {
  border-bottom: none;
}

.art-table-note {
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 36px;
}

/* Mid/Bottom Banner CTA */
.art-banner-cta {
  background: linear-gradient(135deg, #07111E 0%, #153A6B 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  border-radius: 22px;
  padding: 32px 36px;
  color: #ffffff;
  margin: 45px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.art-bcta-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  color: #ffffff;
  margin: 0 0 6px;
}

.art-bcta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.art-bcta-btn {
  background: #4F46E5;
  color: #ffffff !important;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
  transition: all 0.25s;
}

.art-bcta-btn:hover {
  background: #4338CA;
  transform: translateY(-2px);
}

/* ══ RIGHT SIDEBAR WIDGET STACK ══ */
.art-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.art-side-widget {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.art-side-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="dark"] .art-side-title {
  color: #F8FAFC;
}

/* Numbered Table of Contents */
.art-side-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-side-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.art-side-toc-item:hover, .art-side-toc-item.active {
  color: #4F46E5;
  background: rgba(79, 70, 229, 0.06);
  font-weight: 700;
}

.art-toc-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
  color: #4F46E5;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* "Have a Project in Mind?" Sidebar CTA */
.art-side-cta-box {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
  border: 1.5px solid rgba(79, 70, 229, 0.3);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
}

.art-side-cta-box .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.art-side-cta-box h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 6px;
}

[data-theme="dark"] .art-side-cta-box h4 {
  color: #F8FAFC;
}

.art-side-cta-box p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Related Blogs in Sidebar */
.art-side-rel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.art-side-rel-card {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.art-side-rel-card:hover {
  transform: translateX(4px);
}

.art-side-rel-thumb {
  width: 64px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #07111E;
}

.art-side-rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-side-rel-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.art-side-rel-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: #4F46E5;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.art-side-rel-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy2);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
}

[data-theme="dark"] .art-side-rel-title {
  color: #F1F5F9;
}

.art-side-rel-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Tags Cloud Widget */
.art-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.art-tag-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.art-tag-pill:hover {
  background: #4F46E5;
  color: #ffffff;
  border-color: #4F46E5;
}

/* Social Share Widget */
.art-share-icons {
  display: flex;
  gap: 10px;
}

.art-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.art-share-btn:hover {
  background: #4F46E5;
  color: #ffffff;
  border-color: #4F46E5;
  transform: translateY(-2px);
}

/* "Was this article helpful?" Feedback Box */
.art-feedback-box {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.art-feedback-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 6px;
}

[data-theme="dark"] .art-feedback-box h4 {
  color: #F8FAFC;
}

.art-feedback-box p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.art-feedback-actions {
  display: flex;
  gap: 10px;
}

.art-fb-btn {
  flex: 1;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--navy2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.art-fb-btn:hover {
  border-color: #4F46E5;
  color: #4F46E5;
  background: rgba(79, 70, 229, 0.05);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .art-header-section {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }
  .art-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .art-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .art-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .art-sidebar {
    order: -1;
    position: static;
  }
  .art-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .art-feature-grid {
    grid-template-columns: 1fr;
  }
  .art-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .art-infographic-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .art-banner-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .art-module-grid {
    grid-template-columns: 1fr;
  }
  .art-rel-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   MODULE COST CARDS (Cost breakdown bento grid)
═══════════════════════════════════════════ */
.art-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 36px;
}

.art-module-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.art-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 14px 30px rgba(11, 25, 44, 0.08);
}

.art-mc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.art-mc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.08);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-mc-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: #4F46E5;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.art-mc-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--navy2);
  margin-bottom: 8px;
  line-height: 1.35;
}

[data-theme="dark"] .art-mc-title {
  color: #F8FAFC;
}

.art-mc-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* ══════════════════════════════════════════
   FAQ ACCORDION ITEMS
═══════════════════════════════════════════ */
.art-faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.art-faq-item:hover {
  border-color: rgba(79, 70, 229, 0.35);
}

.art-faq-item h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy2);
  margin: 0 0 10px;
  line-height: 1.4;
}

[data-theme="dark"] .art-faq-item h4 {
  color: #F1F5F9;
}

.art-faq-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   RELATED ARTICLES HORIZONTAL CARD GRID
   (used inside article body, bottom section)
═══════════════════════════════════════════ */
.art-rel-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid var(--border);
}

.art-rel-section h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy2);
  margin-bottom: 22px;
}

[data-theme="dark"] .art-rel-section h3 {
  color: #F8FAFC;
}

.art-rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.art-rel-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.art-rel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 16px 36px rgba(11,25,44,0.1);
}

.art-rel-thumb {
  height: 140px;
  overflow: hidden;
  background: #07111E;
  flex-shrink: 0;
}

.art-rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.art-rel-card:hover .art-rel-thumb img {
  transform: scale(1.06);
}

.art-rel-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.art-rel-cat {
  font-size: 0.68rem;
  font-weight: 800;
  color: #4F46E5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.art-rel-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy2);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  flex-grow: 1;
}

[data-theme="dark"] .art-rel-title {
  color: #F1F5F9;
}

.art-rel-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4F46E5;
  margin-top: auto;
}

.art-rel-cta:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   ARTICLE BODY — List and paragraph styling
═══════════════════════════════════════════ */
.art-body ul, .art-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.art-body li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--art-text);
}

.art-body strong {
  color: var(--navy2);
  font-weight: 800;
}

[data-theme="dark"] .art-body strong {
  color: #E2E8F0;
}

.art-body a {
  color: #4F46E5;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(79, 70, 229, 0.3);
  transition: border-color 0.2s;
}

.art-body a:hover {
  border-color: #4F46E5;
}

/* ══════════════════════════════════════════
   ARTICLE BODY — Section first paragraph
═══════════════════════════════════════════ */
.art-body section:first-of-type > p:first-child {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--art-text);
}

/* ══════════════════════════════════════════
   HERO VISUAL — tinted glassmorphism panel
═══════════════════════════════════════════ */
.art-hero-visual {
  background: linear-gradient(135deg, rgba(79,70,229,0.06) 0%, rgba(6,182,212,0.06) 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.05);
  overflow: hidden;
}

.art-hero-visual img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

