/* ============================================
   WHATSAPP MOCKUPS - Visual Automation Demo
   ============================================ */

/* Phone Mockup Frame */
.phone-mockup {
  position: relative;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  background: #e5ddd5;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  padding-top: 60px;
}

/* WhatsApp Header */
.wa-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #075e54;
  color: white;
  padding: 40px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.wa-contact-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.wa-contact-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

/* WhatsApp Chat Messages */
.wa-chat-area {
  padding: 16px;
  min-height: 400px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23e5ddd5" width="100" height="100"/><circle fill="%23ffffff" fill-opacity="0.02" cx="50" cy="50" r="30"/></svg>');
}

.wa-message {
  max-width: 75%;
  margin-bottom: 8px;
  clear: both;
  animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-message-in {
  float: left;
}

.wa-message-out {
  float: right;
}

.wa-bubble {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
}

.wa-message-in .wa-bubble {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-message-out .wa-bubble {
  background: #dcf8c6;
  border-radius: 8px 0 8px 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-time {
  display: block;
  font-size: 11px;
  color: #667781;
  margin-top: 4px;
  text-align: right;
}

.wa-message-out .wa-time {
  color: #5a7a5e;
}

/* Bot Indicator */
.wa-bot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  background: #25d366;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  margin-bottom: 4px;
  font-weight: 600;
}

.wa-bot-badge i {
  font-size: 10px;
}

/* Quick Reply Buttons */
.wa-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.wa-quick-reply-btn {
  background: white;
  border: 1px solid #e1e1e1;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #075e54;
  font-weight: 500;
}

.wa-quick-reply-btn:hover {
  background: #f0f2f5;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wa-quick-reply-btn.is-active {
  background: #dcf8c6;
  border-color: #25d366;
  color: #075e54;
}

/* Automation Flow Visual */
.automation-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
  position: relative;
}

.flow-step::after {
  content: '';
  position: absolute;
  left: 28px;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, #0d9488, transparent);
}

.flow-step:last-child::after {
  display: none;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488 0%, #0e7490 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.flow-content h5 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.flow-content p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* Connection Lines/Arrows */
.connection-visual {
  position: relative;
  padding: 40px 20px;
}

.connection-node {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.connection-arrow {
  position: absolute;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #0d9488, #10b981);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.connection-arrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #10b981;
}

/* Feature Showcase Cards */
.feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.feature-card-visual {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-visual-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 24px;
  color: white;
  text-align: center;
}

.feature-visual-body {
  padding: 24px;
}

/* ============================================
   CHANNEL HUB — WhatsApp center + orbit icons
   Square aspect, never stretched tall
   ============================================ */

.automation-visual-section {
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfeff 48%, #f8fafc 100%);
}

.channel-hub {
  --hub-size: min(100%, 420px);
  position: relative;
  width: var(--hub-size);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  max-width: 420px;
}

.channel-hub-glow {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37, 211, 102, 0.28) 0%, rgba(37, 211, 102, 0.1) 42%, transparent 70%);
  animation: hubPulse 3.2s ease-in-out infinite;
}

.channel-hub-orbit-line {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.channel-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 8vw, 3.25rem);
  box-shadow:
    0 0 0 10px rgba(37, 211, 102, 0.12),
    0 12px 32px rgba(18, 140, 126, 0.35);
  z-index: 2;
}

.channel-hub-nodes {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}

.channel-hub-node {
  --angle: calc(var(--i) * 45deg - 90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #0f172a;
  transform: rotate(var(--angle)) translate(min(42vw, 168px)) rotate(calc(-1 * var(--angle)));
  animation: hubFloat 3.6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s);
  z-index: 3;
}

.channel-hub-node--label {
  width: 58px;
  height: 58px;
  margin: -29px;
  font-size: 1rem;
  gap: 1px;
}

.channel-hub-node--label span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #334155;
}

.channel-hub-node--rcs {
  background: #2563eb;
  color: #fff;
  border-color: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.channel-hub-node .fa-tiktok { color: #000; }
.channel-hub-node .fa-meta { color: #0668E1; }
.channel-hub-node .fa-facebook-messenger { color: #a855f7; }
.channel-hub-node .fa-google { color: #4285F4; }
.channel-hub-node .fa-instagram { color: #e1306c; }
.channel-hub-node .fa-facebook-f { color: #1877f2; }
.channel-hub-node .fa-phone-alt { color: #16a34a; }

@keyframes hubPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes hubFloat {
  0%, 100% { filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.08)); }
  50% { filter: drop-shadow(0 10px 14px rgba(15, 23, 42, 0.14)); }
}

.channel-hub-chat {
  max-width: 400px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* WhatsApp Widget Header */
.wa-chat-header {
  background: #008069; /* Official WhatsApp Premium Teal */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}

.wa-online-status-dot {
  width: 10px;
  height: 10px;
  background: #25d366; /* WhatsApp green */
  border: 2px solid #008069;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.wa-chat-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-chat-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-verified-badge {
  color: #20d5ec !important; /* Premium Cyan Verified Badge */
}

.wa-chat-status {
  font-size: 0.72rem;
  opacity: 0.85;
}

.wa-chat-header-actions {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* WhatsApp Widget Body */
.wa-chat-body {
  background: #efeae2; /* Official WhatsApp Chat Wallpaper color */
  position: relative;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  padding: 16px;
}

/* Message Rows */
.wa-chat-msg-row {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: messageSlide 0.3s ease-out;
}

.wa-chat-msg-row--out {
  align-self: flex-end;
  align-items: flex-end;
}

.wa-chat-msg-row--in {
  align-self: flex-start;
  align-items: flex-start;
}

.wa-chat-msg-bubble {
  padding: 8px 12px;
  font-size: 0.875rem;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.wa-chat-msg-row--out .wa-chat-msg-bubble {
  background: #d9fdd3; /* WhatsApp Outbound Bubble */
  border-radius: 12px 0 12px 12px;
  color: #111b21;
}

.wa-chat-msg-row--in .wa-chat-msg-bubble {
  background: #ffffff; /* WhatsApp Inbound Bubble */
  border-radius: 0 12px 12px 12px;
  color: #111b21;
}

.wa-bot-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #008069;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: inline-flex;
  align-items: center;
}

.wa-msg-time {
  font-size: 0.65rem;
  color: #667781;
  margin-top: 2px;
  display: inline-block;
}

.wa-chat-msg-row--out .wa-msg-time {
  text-align: right;
}

/* Quick Replies */
.wa-quick-replies-list {
  margin-top: 8px;
}

.wa-quick-reply-btn {
  background: #ffffff;
  border: 1px solid #e9edef;
  color: #008069;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.wa-quick-reply-btn:hover {
  background: #f0fdf4;
  border-color: #008069;
  transform: translateY(-1px);
}

.wa-quick-reply-btn.is-active {
  background: #008069;
  color: #fff;
  border-color: #008069;
}

/* Typing Animation Bubble */
.wa-chat-msg-bubble--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 0 12px 12px 12px;
  background: #ffffff;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .channel-hub-glow,
  .channel-hub-node {
    animation: none;
  }
}

/* ============================================
   FEATURE TILES
   Fixed visual height — never stretched
   ============================================ */

.toc-feature-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 1.35rem 1.35rem 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.toc-feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.toc-feature-tile--sand { background: #fef9ee; }
.toc-feature-tile--rose { background: #fdf2f8; }
.toc-feature-tile--mint { background: #ecfdf5; }
.toc-feature-tile--slate { background: #f8fafc; }
.toc-feature-tile--blush { background: #fff1f2; }
.toc-feature-tile--peach { background: #fff7ed; }

.toc-feature-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 0.4rem;
}

.toc-feature-tile--rose .toc-feature-label { color: #db2777; }
.toc-feature-tile--mint .toc-feature-label { color: #059669; }
.toc-feature-tile--slate .toc-feature-label { color: #64748b; }
.toc-feature-tile--blush .toc-feature-label { color: #e11d48; }
.toc-feature-tile--peach .toc-feature-label { color: #c2410c; }

.toc-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.toc-feature-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.toc-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.toc-feature-link:hover {
  color: #0f766e;
}

.toc-feature-visual {
  position: relative;
  margin-top: auto;
  padding-top: 1rem;
  min-height: 180px;
  max-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.toc-feature-visual--photo {
  aspect-ratio: 16 / 10;
  max-height: none;
  min-height: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.toc-feature-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.toc-float-badge {
  position: absolute;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.toc-float-badge--fail {
  left: 8%;
  top: 28%;
  color: #b91c1c;
}

.toc-float-badge--ok {
  right: 8%;
  top: 42%;
  color: #15803d;
}

.toc-mini-chat {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 0.5rem 0.5rem 1rem;
}

.toc-mini-chat-bubble {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.toc-mini-chat-bubble--user {
  background: #dcf8c6;
  margin-left: 20%;
}

.toc-mini-chat-bubble--bot {
  background: #fff;
  margin-right: 10%;
}

.toc-mini-chat-cta {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.toc-mini-orb {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #67e8f9, #22c55e);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.45);
  animation: hubPulse 2.4s ease-in-out infinite;
}

.toc-flow-mini {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 1rem;
}

.toc-flow-mini-node {
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-flow-mini-node i { color: #0d9488; }

.toc-flow-mini-line {
  width: 2px;
  height: 14px;
  margin-left: 1.4rem;
  background: linear-gradient(#0d9488, #86efac);
}

.toc-feature-visual--split {
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.toc-ad-card,
.toc-wa-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  width: 42%;
  min-width: 120px;
}

.toc-ad-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.toc-ad-card span,
.toc-wa-card p {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.35rem;
  color: #64748b;
}

.toc-wa-card {
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.toc-wa-card .fa-whatsapp {
  color: #25d366;
  font-size: 1.4rem;
}

.toc-ad-arrow {
  color: #94a3b8;
  font-size: 1.1rem;
}

.toc-feature-visual--ig {
  position: relative;
}

.toc-ig-bubble {
  position: absolute;
  right: 6%;
  bottom: 10%;
  left: 28%;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  font-size: 0.75rem;
  z-index: 2;
}

.toc-ig-bubble p { margin: 0 0 0.4rem; color: #334155; }

.toc-crm-mini {
  width: 100%;
  max-width: 280px;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.toc-crm-mini-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.toc-crm-mini-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.toc-crm-mini-head strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.toc-crm-mini-head span {
  font-size: 0.72rem;
  color: #64748b;
}

.toc-crm-mini-tags {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.toc-crm-mini-tags span {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.toc-crm-mini-tags .hot { background: #fee2e2; color: #b91c1c; }
.toc-crm-mini-tags .warm { background: #ffedd5; color: #c2410c; }
.toc-crm-mini-tags .new { background: #dbeafe; color: #1d4ed8; }

.toc-crm-mini-tasks {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.toc-crm-mini-tasks span {
  font-size: 0.7rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
  .phone-mockup {
    width: 280px;
  }
  
  .wa-chat-area {
    min-height: 300px;
  }
  
  .automation-flow {
    padding: 16px;
  }

  .channel-hub {
    max-width: 320px;
  }

  .channel-hub-node {
    width: 44px;
    height: 44px;
    margin: -22px;
    font-size: 1rem;
    transform: rotate(var(--angle)) translate(min(38vw, 128px)) rotate(calc(-1 * var(--angle)));
  }

  .channel-hub-node--label {
    width: 48px;
    height: 48px;
    margin: -24px;
  }

  .toc-feature-visual {
    min-height: 160px;
    max-height: 200px;
  }

  .toc-feature-visual--photo {
    aspect-ratio: 16 / 11;
  }
}
