/* ===== Curious Minds — Custom Stylesheet ===== */
/* Tailwind v4 CDN handles utility classes. This file defines the theme, base styles, and custom components. */

/* ---------- Theme / CSS Custom Properties ---------- */
:root {
  --color-background: #0B0B0F;
  --color-foreground: #F2EDE4;
  --color-surface: #141419;
  --color-elevated: #1C1C24;
  --color-border-subtle: #2A2A35;
  --color-cream: #F2EDE4;
  --color-muted: #8A8A95;
  --color-gold: #C9A84C;
  --color-gold-light: #D4B86A;
  --color-terracotta: #E07A5F;
  --color-sage: #7FB069;
  --color-lavender: #8B7EC8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film-grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(201,168,76,0.3);
  color: var(--color-cream);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-background); }
::-webkit-scrollbar-thumb { background: var(--color-border-subtle); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Font classes ---------- */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

/* ---------- Keyframes ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}
@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(14px) rotate(-2deg); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.15); }
  50%      { box-shadow: 0 0 40px rgba(201,168,76,0.3); }
}
@keyframes scroll-hint {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-float         { animation: float 6s ease-in-out infinite; }
.animate-float-reverse { animation: float-reverse 7s ease-in-out infinite; }
.animate-pulse-glow    { animation: pulse-glow 3s ease-in-out infinite; }
.animate-scroll-hint   { animation: scroll-hint 1.8s ease-in-out infinite; }

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Section divider ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-subtle), transparent);
}

/* ---------- Hero background slideshow ---------- */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,15,0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  position: relative;
  width: 90vw;
  max-width: 56rem;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-btn {
  position: absolute;
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-btn:hover {
  color: var(--color-cream);
  border-color: rgba(201,168,76,0.3);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 640px) {
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: #0B0B0F !important;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  height: 100vh;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* ---------- Format tabs (How It Works) ---------- */
.format-tab {
  position: relative;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.format-tab:hover { color: var(--color-cream); }
.format-tab.active {
  background: var(--color-gold);
  color: var(--color-background);
}

/* ---------- Discussion content prose ---------- */
.prose {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 1rem;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-display);
  color: var(--color-cream);
  margin: 2rem 0 0.75rem;
}
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.5rem; list-style-type: disc; }
.prose ol { margin: 0 0 1rem; padding-left: 1.5rem; list-style-type: decimal; }
.prose li { margin-bottom: 0.4rem; display: list-item; }
.prose ul ul, .prose ol ul { list-style-type: circle; }
.prose ol ol { list-style-type: lower-alpha; }
.prose blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--color-cream);
}
.prose strong { color: var(--color-cream); }
.prose a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--color-gold-light); }
.prose img {
  border-radius: 1rem;
  margin: 1.5rem 0;
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--color-border-subtle);
  margin: 2rem 0;
}

/* ---------- Admin styles ---------- */
.admin-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1rem;
  padding: 1.5rem;
}
.admin-input {
  width: 100%;
  background: var(--color-background);
  border: 1px solid var(--color-border-subtle);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.admin-input:focus {
  outline: none;
  border-color: rgba(201,168,76,0.4);
}
.admin-input::placeholder { color: rgba(138,138,149,0.5); }
.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.admin-btn-primary {
  background: var(--color-gold);
  color: var(--color-background);
}
.admin-btn-primary:hover { background: var(--color-gold-light); }
.admin-btn-danger {
  background: rgba(224,122,95,0.1);
  color: var(--color-terracotta);
  border: 1px solid rgba(224,122,95,0.2);
}
.admin-btn-danger:hover { background: rgba(224,122,95,0.2); }
.admin-btn-secondary {
  background: var(--color-surface);
  color: var(--color-cream);
  border: 1px solid var(--color-border-subtle);
}
.admin-btn-secondary:hover { border-color: rgba(201,168,76,0.3); }

/* ---------- Category badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Badge on top of images: dark backdrop for readability on bright photos */
.badge-overlay {
  background: rgba(11,11,15,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  border: 1px solid rgba(242,237,228,0.15);
}
.badge-overlay .badge {
  background: transparent;
  border: none;
  color: var(--color-cream);
}
.badge-dubai {
  background: rgba(201,168,76,0.15);
  color: var(--color-gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.badge-international {
  background: rgba(139,126,200,0.15);
  color: var(--color-lavender);
  border: 1px solid rgba(139,126,200,0.25);
}
.badge-paid {
  background: rgba(224,122,95,0.15);
  color: var(--color-terracotta);
  border: 1px solid rgba(224,122,95,0.25);
}
.badge-free {
  background: rgba(127,176,105,0.15);
  color: var(--color-sage);
  border: 1px solid rgba(127,176,105,0.25);
}
.badge-online {
  background: rgba(139,126,200,0.15);
  color: var(--color-lavender);
  border: 1px solid rgba(139,126,200,0.25);
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--color-border-subtle);
  color: var(--color-muted);
  transition: all 0.2s;
}
.pagination a:hover {
  color: var(--color-cream);
  border-color: rgba(201,168,76,0.3);
}
.pagination .active {
  background: var(--color-gold);
  color: var(--color-background);
  border-color: var(--color-gold);
}

/* ---------- Blog card (listing) ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  transition: all 0.5s;
}
.blog-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
}

/* ---------- Blog tag pills ---------- */
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-surface);
  color: var(--color-muted);
  border: 1px solid var(--color-border-subtle);
  transition: all 0.2s;
}
.blog-tag:hover {
  color: var(--color-cream);
  border-color: rgba(201,168,76,0.3);
}
.blog-tag-active {
  background: var(--color-gold);
  color: var(--color-background);
  border-color: var(--color-gold);
}
.blog-tag-active:hover {
  background: var(--color-gold-light);
  color: var(--color-background);
  border-color: var(--color-gold-light);
}
.blog-tag-small {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(11,11,15,0.7);
  color: var(--color-cream);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Blog hero (detail page) ---------- */
.blog-hero {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.blog-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--color-background) 100%);
}

/* ---------- Blog TLDR box ---------- */
.blog-tldr {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}

/* ---------- Blog share links ---------- */
.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-muted);
  border: 1px solid var(--color-border-subtle);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.blog-share-btn:hover {
  color: var(--color-cream);
  border-color: rgba(201,168,76,0.3);
}
/* Copy link button is wider because it has text */
.blog-share-btn:last-child {
  width: auto;
  border-radius: 9999px;
  padding: 0 1rem;
}

/* ---------- Blog author card ---------- */
.blog-author-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* ---------- Podcast / YouTube video cards ---------- */
.podcast-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  cursor: pointer;
  transition: all 0.4s;
}
.podcast-card:hover {
  border-color: rgba(224,122,95,0.25);
  box-shadow: 0 8px 40px rgba(224,122,95,0.07);
  transform: translateY(-2px);
}
.podcast-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.podcast-card:hover .podcast-play-btn {
  opacity: 1;
}
.podcast-play-btn svg {
  width: 56px;
  height: 56px;
  background: rgba(224,122,95,0.9);
  color: #fff;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}
.podcast-card:hover .podcast-play-btn svg {
  transform: scale(1.1);
}

/* ---------- Podcast video lightbox modal ---------- */
.podcast-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,11,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1rem;
}
.podcast-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.podcast-modal-inner {
  position: relative;
  width: 100%;
  max-width: 56rem;
  background: var(--color-surface);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.podcast-modal.open .podcast-modal-inner {
  transform: scale(1);
}
.podcast-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-background);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.podcast-modal-close:hover {
  color: var(--color-cream);
  border-color: rgba(201,168,76,0.4);
}
.podcast-modal-title-bar {
  padding: 1rem 1.25rem 0.75rem;
  padding-right: 3rem;
  border-bottom: 1px solid var(--color-border-subtle);
}
.podcast-modal-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.podcast-modal-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.podcast-modal-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--color-border-subtle);
}

/* ---------- Podcast tab buttons ---------- */
.podcast-tab-btn {
  color: var(--color-muted);
  cursor: pointer;
  white-space: nowrap;
}
.podcast-tab-btn.active {
  background: var(--color-background);
  color: var(--color-cream);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.podcast-tab-btn:not(.active):hover {
  color: var(--color-cream);
}

/* Short card — slimmer play button */
.podcast-card--short .podcast-play-btn svg {
  width: 44px;
  height: 44px;
  padding: 10px;
}

/* ---------- Shorts fullscreen player ---------- */
.shorts-player {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.shorts-player.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.shorts-player-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.shorts-player-close:hover {
  background: rgba(255,255,255,0.16);
}

.shorts-player-counter {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  z-index: 10;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
}

/* Portrait video frame — max-height to stay in viewport with info bar */
.shorts-player-frame {
  position: relative;
  width: min(100vw, 56.25vh);
  max-width: 400px;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .shorts-player-frame {
    width: 100vw;
    max-width: none;
    border-radius: 0;
    aspect-ratio: 9 / 16;
    max-height: calc(100vh - 120px);
  }
}
.shorts-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Info bar below video */
.shorts-player-info {
  width: min(100vw, 56.25vh);
  max-width: 400px;
  padding: 0.75rem 0.5rem 0;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .shorts-player-info {
    width: 100%;
    max-width: none;
    padding: 0.6rem 1rem 0;
  }
}

/* Up / Down navigation buttons */
.shorts-player-nav {
  position: absolute;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.shorts-player-nav:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.shorts-player-nav--up {
  right: 1rem;
  top: 50%;
  transform: translateY(calc(-50% - 2.5rem));
}
.shorts-player-nav--down {
  right: 1rem;
  top: 50%;
  transform: translateY(calc(-50% + 2.5rem));
}
@media (max-width: 640px) {
  .shorts-player-nav--up {
    top: auto;
    bottom: 5rem;
    right: 0.75rem;
    transform: none;
  }
  .shorts-player-nav--down {
    top: auto;
    bottom: 1.5rem;
    right: 0.75rem;
    transform: none;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-background);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-background);
  outline-offset: -4px;
}

/* ---------- Focus visible ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
