/* === amrein-tiles.css — Bamboo-style Enterprise SaaS tiles look & feel ===
 * Ported from the reference site (port 3000) home.css to give the amrein
 * homepage the same "top products" tile design. Teal accent #14b8a6, dark
 * navy #0a1628, clean whites, subtle shadows, Inter font.
 * Loaded after amrein-modern.css so the .hp-* classes override the generic
 * .ae-* classes on the homepage. Scoped to body.amrein-body.
 * Teal accent #14b8a6, dark navy #0a1628, clean whites, subtle shadows */

/* Inter font is loaded via <link> in the amrein header partial (HTML head) so
 * the @import rule does not need to be the first statement here. */

body.amrein-body { font-family: 'Inter', "Segoe UI", system-ui, -apple-system, sans-serif; }

/* When the homepage uses .hp-* sections, let them own the full width and
 * override the narrow .outerContainer max-width from amrein-modern.css. */
body.amrein-body .outerContainer:has(.hp-hero),
body.amrein-body .outerContainer:has(.hp-featured-grid),
body.amrein-body .outerContainer:has(.hp-categories-grid),
body.amrein-body .outerContainer:has(.hp-why-grid),
body.amrein-body .outerContainer:has(.hp-stats) {
    max-width: 1320px;
}
/* The hp-hero should span full width (no rounded card). */
body.amrein-body .ae-hero { display: none !important; } /* legacy hero hidden when hp-hero is used */


/* ── Hero ── */
.hp-hero {
  position: relative;
  background: linear-gradient(145deg, #0a1628 0%, #112a3a 50%, #0d3d38 100%);
  padding: 96px 0 110px;
  overflow: hidden;
  color: #fff;
}

.hp-hero-bg { display: none; }

.hp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.hp-hero-content { max-width: 620px; }

.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 24px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  background: rgba(20, 184, 166, 0.06);
  font: 600 11px/1 'Inter', sans-serif;
  color: #2dd4bf;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hp-hero-badge .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2dd4bf;
}

.hp-hero h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.hp-hero h1 strong { color: #2dd4bf; }

.hp-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0 0 32px;
  max-width: 520px;
}

.hp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font: 600 14px/1.2 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.hp-btn-primary { background: #14b8a6; color: #fff; }
.hp-btn-primary:hover { background: #0d9488; color: #fff; text-decoration: none; }

.hp-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.hp-btn-outline:hover { border-color: rgba(255,255,255,0.35); color: #fff; text-decoration: none; }

.hp-trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }

.hp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font: 500 11px 'Inter', sans-serif;
  color: rgba(255,255,255,0.35);
}
.hp-trust-badge i { color: #2dd4bf; font-size: 12px; }

/* Right glass card */
.hp-hero-visual {}

.hp-hero-glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px;
}

.hp-glass-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hp-glass-stat-item {
  text-align: center;
  padding: 12px 0;
}
.hp-glass-stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.hp-glass-stat-row:first-child .hp-glass-stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

.hp-glass-stat-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.hp-glass-stat-icon.blue  { background: rgba(59,130,246,0.12); color: #60a5fa; }
.hp-glass-stat-icon.teal  { background: rgba(20,184,166,0.14); color: #2dd4bf; }
.hp-glass-stat-icon.amber { background: rgba(245,158,11,0.12); color: #fbbf24; }
.hp-glass-stat-icon.green { background: rgba(16,185,129,0.12); color: #34d399; }

.hp-glass-stat-num {
  display: block;
  font: 700 22px/1.1 'Inter', sans-serif;
  color: #fff;
  margin-bottom: 2px;
}

.hp-glass-stat-label {
  font: 500 9px 'Inter', sans-serif;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hp-glass-trust {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  margin-top: 4px;
}
.hp-glass-trust-title {
  font: 600 9px 'Inter', sans-serif;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-glass-badges { display: flex; gap: 6px; justify-content: center; }
.hp-glass-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 8px;
  font: 600 10px 'Inter', sans-serif;
  color: rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.hp-glass-badge i { font-size: 10px; }

/* ── Stats Bar ── */
.hp-stats {
  position: relative;
  z-index: 10;
  margin-top: -28px;
  margin-bottom: 48px;
}

.hp-stats-inner {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.hp-stat {
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}
.hp-stat:hover { background: #f9fafb; }
.hp-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 40%; width: 1px; background: #f3f4f6;
}

.hp-stat-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #f0fdfa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.hp-stat:hover .hp-stat-icon { background: #14b8a6; }
.hp-stat i { color: #14b8a6; font-size: 16px; transition: color 0.2s; }
.hp-stat:hover .hp-stat i { color: #fff; }

.hp-stat-num {
  font: 700 28px/1.1 'Inter', sans-serif;
  color: #111827;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.hp-stat-label {
  font: 500 10px 'Inter', sans-serif;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */
.hp-section { padding: 80px 0; }
.hp-section-alt { background: #f9fafb; }

.hp-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.hp-section-label {
  display: inline-block;
  font: 600 11px 'Inter', sans-serif;
  color: #14b8a6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  background: #f0fdfa;
  padding: 4px 14px;
  border-radius: 4px;
}
.hp-section-label i { margin-right: 4px; }

.hp-section-title {
  font: 700 32px/1.15 'Inter', sans-serif;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hp-section-desc {
  font: 400 15px/1.6 'Inter', sans-serif;
  color: #6b7280;
  margin: 0 auto;
}

/* ── Featured Products ── */
.hp-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-featured-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s;
}
.hp-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.hp-featured-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}
.hp-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.hp-featured-card:hover .hp-featured-img img { transform: scale(1.04); }

.hp-featured-img.default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdfa, #f0f9ff);
}
.hp-featured-img.default i {
  font-size: 36px;
  color: #cbd5e1;
}

.hp-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,148,136,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.hp-featured-card:hover .hp-featured-img-overlay { opacity: 1; }
.hp-featured-img-overlay span {
  color: #fff;
  font: 600 13px 'Inter', sans-serif;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hp-featured-body { padding: 16px 18px; }

.hp-featured-tag {
  display: inline-block;
  font: 600 10px 'Inter', sans-serif;
  color: #14b8a6;
  background: #f0fdfa;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.hp-featured-badges { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 6px; }

.hp-featured-badge {
  font: 600 9px 'Inter', sans-serif;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.hp-featured-badge.free   { background: #dcfce7; color: #15803d; }
.hp-featured-badge.o365   { background: #dbeafe; color: #1d4ed8; }
.hp-featured-badge.modern { background: #f3e8ff; color: #7c3aed; }

.hp-featured-title {
  font: 600 15px/1.3 'Inter', sans-serif;
  color: #111827;
  margin: 0 0 6px;
}
.hp-featured-title a { color: #111827; }
.hp-featured-title a:hover { color: #0d9488; }

.hp-featured-desc {
  font: 400 13px/1.5 'Inter', sans-serif;
  color: #6b7280;
  margin: 0 0 12px;
}

.hp-featured-link {
  font: 600 12px 'Inter', sans-serif;
  color: #14b8a6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.hp-featured-link:hover { gap: 10px; color: #0d9488; text-decoration: none; }

/* ── Why ── */
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.hp-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-color: #14b8a6;
}

.hp-why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #f0fdfa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.hp-why-card:hover .hp-why-icon { background: #14b8a6; }
.hp-why-icon i { color: #14b8a6; font-size: 22px; transition: color 0.2s; }
.hp-why-card:hover .hp-why-icon i { color: #fff; }

.hp-why-title {
  font: 600 15px 'Inter', sans-serif;
  color: #111827;
  margin-bottom: 8px;
}
.hp-why-desc {
  font: 400 13px/1.5 'Inter', sans-serif;
  color: #6b7280;
}

/* ── Categories ── */
.hp-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hp-cat-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  text-decoration: none;
}
.hp-cat-card:hover {
  transform: translateY(-2px);
  border-color: #14b8a6;
  box-shadow: 0 2px 8px rgba(20,184,166,0.08);
  text-decoration: none;
}
.hp-cat-card i { font-size: 26px; color: #14b8a6; margin-bottom: 10px; display: block; }
.hp-cat-card h3 { font: 600 14px 'Inter', sans-serif; color: #111827; margin: 0 0 2px; }
.hp-cat-card span { font: 400 12px 'Inter', sans-serif; color: #9ca3af; }

/* ── Blog Updates ── */
.hp-updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hp-update-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.hp-update-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-color: #d1d5db;
}

.hp-update-header {
  padding: 14px 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-update-date {
  font: 400 12px 'Inter', sans-serif;
  color: #9ca3af;
}

.hp-update-tag {
  font: 600 10px 'Inter', sans-serif;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.hp-update-tag.product { background: #f0fdfa; color: #14b8a6; }
.hp-update-tag.news    { background: #eff6ff; color: #3b82f6; }
.hp-update-tag.update  { background: #fffbeb; color: #d97706; }

.hp-update-body { padding: 12px 18px 18px; }

.hp-update-title {
  font: 600 15px/1.3 'Inter', sans-serif;
  color: #111827;
  margin-bottom: 6px;
}

.hp-update-excerpt {
  font: 400 13px/1.5 'Inter', sans-serif;
  color: #6b7280;
  margin-bottom: 12px;
}

.hp-read-more {
  font: 600 12px 'Inter', sans-serif;
  color: #14b8a6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.hp-read-more:hover { gap: 10px; color: #0d9488; text-decoration: none; }

/* ── Testimonials ── */
.hp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.hp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

.hp-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.hp-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.hp-testimonial-info { flex: 1; }

.hp-testimonial-name {
  font: 600 15px 'Inter', sans-serif;
  color: #111827;
  margin-bottom: 4px;
}

.hp-testimonial-verified {
  font: 400 11px 'Inter', sans-serif;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hp-testimonial-verified i { font-size: 10px; }

.hp-testimonial-rating {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.hp-testimonial-content {
  font: 400 14px/1.7 'Inter', sans-serif;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  font-style: italic;
}

.hp-testimonial-product {
  font: 500 12px 'Inter', sans-serif;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.hp-testimonial-product i { color: #14b8a6; font-size: 11px; }

/* ── CTA Green Band ── */
.hp-cta-green {
  background: #14b8a6;
  padding: 28px 0;
  text-align: center;
}
.hp-cta-green h3 {
  font: 700 20px 'Inter', sans-serif;
  color: #fff;
  margin: 0 0 4px;
}
.hp-cta-green p {
  font: 400 14px 'Inter', sans-serif;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
}
.hp-cta-green .hp-btn {
  background: #fff;
  color: #0f766e;
  font-weight: 700;
}
.hp-cta-green .hp-btn:hover { background: #f0fdfa; color: #0d9488; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1280px) {
  .hp-hero-inner { grid-template-columns: 1fr 280px; gap: 32px; }
}

@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; }
  .hp-hero-visual { display: none; }
  .hp-hero { padding: 72px 0 80px; }
  .hp-hero h1 { font-size: 38px; }
  .hp-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-categories-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-updates-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-section-title { font-size: 28px; }
  .hp-section { padding: 64px 0; }
}

@media (max-width: 768px) {
  .hp-hero { padding: 56px 0 64px; }
  .hp-hero h1 { font-size: 28px; }
  .hp-hero-subtitle { font-size: 14px; }
  .hp-hero-actions { flex-direction: column; }
  .hp-btn { justify-content: center; }
  .hp-trust-row { flex-wrap: wrap; }
  .hp-stats { margin-top: -24px; }
  .hp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hp-stat:nth-child(2)::after { display: none; }
  .hp-section { padding: 48px 0; }
  .hp-section-title { font-size: 24px; }
  .hp-featured-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hp-why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hp-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-updates-grid { grid-template-columns: 1fr; }
  .hp-testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hp-hero h1 { font-size: 24px; }
  .hp-hero-badge { font-size: 10px; padding: 4px 10px; }
  .hp-stats-inner { grid-template-columns: 1fr; }
  .hp-stat::after { display: none !important; }
  .hp-section-title { font-size: 22px; }
  .hp-stat-num { font-size: 22px; }
  .hp-categories-grid { grid-template-columns: 1fr; }
}

/* ── Compatibility Bar ── */
.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.compatibility-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s;
}
.compatibility-card:hover { border-color: #14b8a6; box-shadow: 0 2px 8px rgba(20,184,166,0.08); }
.compatibility-card i { color: #14b8a6; font-size: 20px; }
.compatibility-card span { font: 500 14px 'Inter', sans-serif; color: #374151; }

/* ── Catalog Tools (ProductCatalog) ── */
.hp-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 16px;
}
.hp-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 20px; border: 1px solid #e5e7eb;
  background: #fff; color: #6b7280; font: 600 13px 'Inter', sans-serif;
  cursor: pointer; transition: all 0.2s;
}
.hp-filter-btn:hover { border-color: #14b8a6; color: #14b8a6; }
.hp-filter-btn.active { background: #14b8a6; color: #fff; border-color: #14b8a6; }
.hp-filter-btn.active .hp-filter-count { color: rgba(255,255,255,0.8); }
.hp-filter-count { font-size: 11px; opacity: 0.7; }

.hp-search-box { display: flex; justify-content: center; margin-bottom: 12px; }
.hp-search-input {
  width: 100%; max-width: 480px; padding: 10px 16px;
  border: 1px solid #e5e7eb; border-radius: 6px;
  font: 400 14px 'Inter', sans-serif; color: #374151;
}
.hp-search-input:focus { outline: none; border-color: #14b8a6; box-shadow: 0 0 0 3px rgba(20,184,166,0.1); }

.hp-sort-select {
  align-self: flex-end; margin-left: auto; display: block;
  padding: 8px 12px; border: 1px solid #e5e7eb; border-radius: 6px;
  background: #fff; font: 500 13px 'Inter', sans-serif; color: #6b7280;
  cursor: pointer; margin-bottom: 20px;
}
.hp-catalog-loading, .hp-catalog-empty {
  text-align: center; padding: 48px 0; color: #9ca3af;
  font: 400 15px 'Inter', sans-serif;
}
@media (max-width: 768px) {
  .hp-filter-bar { gap: 6px; }
  .hp-filter-btn { padding: 6px 12px; font-size: 12px; }
  .compatibility-grid { grid-template-columns: 1fr; }
}

/* Hero tile web part (.wp_hero_*) - up to 5 design tiles */
.wp_hero_container { position: relative; width: 100%; }
.wp_hero_wrapper { display: flex; width: 100%; }
.wp_hero_tile { position: relative; min-width: 0; overflow: hidden; }
.wp_hero_tile_overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); pointer-events: none; }
.wp_hero_tile_textbox { position: relative; z-index: 1; padding: 16px; color: #fff; }
.wp_hero_tile_title { font: 600 24px 'Inter', sans-serif; line-height: 1.2; }
.wp_hero_tile_box { padding: 10px; display: inline-block; border-radius: 4px; }
.wp_hero_tile_action { margin-top: 8px; font: 500 14px 'Inter', sans-serif; opacity: 0.9; }
.wp_hero_tile_hover { transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.wp_hero_tile_hover:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.wp_hero_tile_edit { position: absolute; top: 6px; right: 6px; z-index: 2; background: rgba(255,255,255,0.85); border: 1px solid #cbd5e1; border-radius: 4px; padding: 3px 6px; cursor: pointer; }
.wp_hero_add_btn { display: block; margin: 12px auto; padding: 8px 16px; background: #0078d4; color: #fff; border: none; border-radius: 4px; cursor: pointer; font: 500 14px 'Inter', sans-serif; }
@media (max-width: 768px) {
  .wp_hero_wrapper { flex-direction: column; height: auto !important; }
  .wp_hero_tile { flex: 0 0 auto !important; width: 100% !important; min-height: 120px; }
}