/* CARD */

.jy-card {
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.jy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

/* TITLES */

.jy-title-xl {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}

.jy-title-lg {
  font-size: 26px;
  font-weight: 700;
}

.jy-title-md {
  font-size: 18px;
  font-weight: 600;
}

/* BADGE */

.jy-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  font-weight: 700;
  text-transform: uppercase;
}

/* META */

.jy-meta {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
}


/* TOP AD BANNER */

.jy-top-ad {
  height: 160px;
  background: #e5e7eb;
  text-align: center;
  line-height: 160px;
  margin: 20px 0 25px;
  color: #6b7280;
  font-size: 14px;
  border-radius: 6px;
  font-family: var(--jayek-primary);
}

/* SIDEBAR AD */

.jy-side-ad {
  height: 500px;
  background: #e5e7eb;
  text-align: center;
  line-height: 500px;
  color: #6b7280;
  font-size: 14px;
  border-radius: 6px;
  font-family: var(--jayek-primary);
}


.jy-side-ad-square {
  width: 300px;
  height: 250px;

  background: #e9ecef;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 20px auto;
  text-align: center;

  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
}

