/* LangClip partner banner — Japanese pages only.
 * Sidebar card matches the site's .sb-cta style; the "50% OFF" pill uses
 * --red for consistency with .sb-cta-badge.new. Main-column banner is an
 * image link. */

/* Sidebar variant (narrow column) — banner-style card */
.lc-sb {
  position: relative;
  display: block; width: 100%;
  padding: 18px 16px 16px;
  margin-top: 12px;
  background: linear-gradient(180deg, #fff8f5 0%, var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  color: var(--text);
  text-align: left;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.lc-sb:hover {
  border-color: #e8441a;
  box-shadow: 0 4px 14px rgba(232, 68, 26, 0.12);
  transform: translateY(-1px);
}
.lc-sb-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: #e8441a;
}
.lc-sb-brand    { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.lc-sb-mark     { height: 26px; width: 26px; display: block; }
.lc-sb-wordmark {
  font-family: 'DM Sans', var(--sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  color: var(--text); line-height: 1;
}
.lc-sb-tagline  {
  font-size: 13px; font-weight: 600;
  line-height: 1.45; color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.lc-sb-features {
  list-style: none;
  margin: 0 0 14px; padding: 0;
  font-size: 12px; color: var(--text-2); line-height: 1.5;
  display: flex; flex-direction: column; gap: 6px;
}
.lc-sb-features li {
  position: relative;
  padding-left: 22px;
}
.lc-sb-features li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: var(--green-bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%232a7a50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.5 5 9 9.5 3.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.lc-sb-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: #e8441a;
  color: #fff;
  font-size: 12px; font-weight: 600;
  border-radius: 6px;
  transition: background 0.15s;
}
.lc-sb:hover .lc-sb-cta { background: #d13c17; }
.lc-sb-cta span { font-size: 14px; line-height: 1; transition: transform 0.15s; }
.lc-sb:hover .lc-sb-cta span { transform: translateX(2px); }

/* Main-column image banner (per-page slot) */
.lc-top {
  position: relative;
  display: block;
  margin: 24px 0;
  border-radius: var(--rl);
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.15s;
}
.lc-top:hover { opacity: 0.92; }
.lc-top-img {
  display: block;
  width: 100%; height: auto;
}
