
/* =========================================================
   HISSEZ — Premium CSS v17
   Sezin'in kişisel blogu için temiz, güçlü, responsive tasarım sistemi
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  color-scheme: light;

  --bg: #fff8f6;
  --bg-2: #fff0f3;
  --bg-3: #f7e5eb;

  --surface: rgba(255, 250, 248, .88);
  --surface-solid: #fffaf8;
  --surface-soft: rgba(255, 255, 255, .58);
  --surface-deep: #f8e9ee;

  --text: #2a111b;
  --text-strong: #12070c;
  --muted: #7a5d6a;
  --muted-2: #9a7687;

  --primary: #8d153f;
  --primary-2: #bd3869;
  --primary-3: #de7ea3;
  --primary-soft: rgba(141, 21, 63, .10);

  --gold: #c79a4a;
  --gold-soft: rgba(199, 154, 74, .20);

  --border: rgba(141, 21, 63, .14);
  --border-strong: rgba(141, 21, 63, .24);

  --shadow-xs: 0 8px 22px rgba(85, 17, 39, .07);
  --shadow-sm: 0 18px 46px rgba(85, 17, 39, .10);
  --shadow-md: 0 28px 80px rgba(85, 17, 39, .15);
  --shadow-lg: 0 40px 120px rgba(85, 17, 39, .20);

  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --radius-xl: 46px;

  --header-h: 78px;
  --container: 1160px;

  --ease: cubic-bezier(.2, .75, .22, 1);
}

html[data-theme="dark"],
body[data-theme="dark"] {
  color-scheme: dark;

  --bg: #090708;
  --bg-2: #110d0f;
  --bg-3: #181113;

  --surface: rgba(24, 18, 21, .86);
  --surface-solid: #171214;
  --surface-soft: rgba(255, 255, 255, .055);
  --surface-deep: #21181c;

  --text: #fff4f8;
  --text-strong: #ffffff;
  --muted: #dbc8d1;
  --muted-2: #b89daa;

  --primary: #df5a8b;
  --primary-2: #ff8eb5;
  --primary-3: #ffc1d7;
  --primary-soft: rgba(223, 90, 139, .14);

  --gold: #e2b96e;
  --gold-soft: rgba(226, 185, 110, .16);

  --border: rgba(255, 255, 255, .12);
  --border-strong: rgba(255, 255, 255, .22);

  --shadow-xs: 0 10px 28px rgba(0, 0, 0, .22);
  --shadow-sm: 0 20px 55px rgba(0, 0, 0, .30);
  --shadow-md: 0 34px 95px rgba(0, 0, 0, .42);
  --shadow-lg: 0 48px 130px rgba(0, 0, 0, .55);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, color-mix(in srgb, var(--primary) 15%, transparent), transparent 34rem),
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--primary-2) 12%, transparent), transparent 32rem),
    radial-gradient(circle at 55% 0%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 52%, var(--bg));
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--primary) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--primary) 5%, transparent) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 15%, black, transparent 74%);
  opacity: .45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 32%, color-mix(in srgb, var(--primary) 9%, transparent), transparent 20rem),
    radial-gradient(circle at 80% 54%, color-mix(in srgb, var(--primary-3) 8%, transparent), transparent 22rem);
  filter: blur(1px);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--primary);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  transform: translateY(-145%);
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  background: var(--primary);
  color: #fff;
  font-weight: 950;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, transparent), color-mix(in srgb, var(--bg) 76%, transparent));
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 8px 12px color-mix(in srgb, var(--primary) 14%, transparent))
    drop-shadow(0 0 20px color-mix(in srgb, var(--primary) 6%, transparent));
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 850;
  font-size: clamp(31px, 2.4vw, 40px);
  letter-spacing: -.078em;
  line-height: 1;
}

.brand-his {
  color: var(--text-strong);
}

.brand-sez {
  margin-left: 1px;
  color: var(--primary);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .03);
}

.site-nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  transform: translateY(-1px);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-tool-btn,
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.header-tool-btn {
  display: inline-grid;
  place-items: center;
}

.header-tool-btn:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-icon {
  position: absolute;
  line-height: 1;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

html[data-theme="light"] .theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: scale(.5) rotate(28deg);
}

html[data-theme="light"] .theme-icon-sun,
html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.menu-toggle {
  display: none;
  padding: 11px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--primary);
}

/* ---------- Typography ---------- */
.eyebrow {
  margin: 0 0 13px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.054em;
  line-height: 1.01;
}

p {
  margin: 0;
}

/* ---------- Hero ---------- */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 76px);
}

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-bottom: 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .72fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(48px, 7.4vw, 92px);
}

.hero-text,
.page-hero p,
.about-card p,
.closing-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

.hero-text {
  max-width: 650px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
  opacity: .50;
}

.hero-orb-one {
  left: -150px;
  top: 138px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 28%, transparent), transparent 67%);
}

.hero-orb-two {
  right: -120px;
  top: 110px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-2) 20%, transparent), transparent 67%);
}

.hero-card {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.paper-card {
  position: relative;
  padding: 34px 34px 30px;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 96%, transparent), color-mix(in srgb, var(--bg) 88%, transparent));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
}

.paper-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 25px;
  pointer-events: none;
  z-index: -1;
}

.paper-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -30%;
  width: 70%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  opacity: .55;
  pointer-events: none;
}

.paper-card h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: .98;
}

.paper-card p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

/* ---------- Buttons ---------- */
.btn,
.section-link,
.read-more {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.btn:hover,
.section-link:hover,
.read-more:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--primary) 28%, transparent);
}

.btn-ghost,
.section-link {
  color: var(--primary);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-solid) 84%, transparent);
}

.btn-ghost:hover,
.section-link:hover {
  box-shadow: var(--shadow-xs);
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
}

.soft-section {
  border-block: 1px solid var(--border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 34%, transparent), color-mix(in srgb, var(--surface) 20%, transparent));
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading h2,
.page-hero h1,
.about-card h2 {
  font-size: clamp(34px, 5.2vw, 70px);
}

.page-hero {
  text-align: center;
  padding-bottom: 74px;
}

.page-hero p {
  width: min(730px, 100%);
  margin: 18px auto 0;
}

/* ---------- Content Cards ---------- */
.featured-post,
.post-card,
.about-card,
.article-card,
.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.featured-post::before {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 18%, transparent), transparent 70%);
}

.featured-post > * {
  position: relative;
  z-index: 1;
}

.featured-post h3,
.post-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 56px);
}

.featured-post p,
.post-card p {
  color: var(--muted);
  line-height: 1.82;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.post-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.post-card-date {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: color-mix(in srgb, var(--primary) 9%, transparent);
  border-right: 1px solid var(--border);
}

.post-card-date strong {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.post-card-date span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.post-card > div:not(.post-card-date) {
  padding: 28px 30px;
}

.post-card .read-more {
  border-left: 1px solid var(--border);
  border-radius: 0;
  color: var(--primary);
  background: color-mix(in srgb, var(--surface-solid) 52%, transparent);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.post-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--primary) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 11%, transparent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
}

/* ---------- Poem Book ---------- */
.poem-book-list {
  display: grid;
  gap: 34px;
}

.poem-book-entry {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 276px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.poem-book-entry:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.poem-book-left {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 18%, transparent), transparent 16rem),
    color-mix(in srgb, var(--primary) 8%, transparent);
}

.poem-book-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.poem-book-left strong {
  color: color-mix(in srgb, var(--primary) 56%, transparent);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 7vw, 92px);
  line-height: .82;
}

.poem-book-left small {
  color: var(--muted);
  font-weight: 900;
}

.poem-book-right {
  padding: 35px 38px;
  background:
    repeating-linear-gradient(180deg, transparent 0 35px, color-mix(in srgb, var(--primary) 6%, transparent) 36px),
    var(--surface);
}

.poem-book-right h3 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4.4vw, 62px);
}

.poem-book-right p {
  color: var(--muted);
  line-height: 1.92;
}

.poem-book-read,
.daily-read {
  margin-top: 22px;
  border: 1px solid var(--border);
  color: var(--primary);
  background: var(--surface-soft);
}

/* ---------- Daily Timeline ---------- */
.daily-timeline-list {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.daily-timeline-list::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.daily-timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: center;
}

.daily-timeline-entry.left .daily-timeline-card {
  grid-column: 1;
}

.daily-timeline-entry.right .daily-timeline-card {
  grid-column: 3;
}

.daily-timeline-dot {
  grid-column: 2;
  z-index: 2;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
}

.daily-timeline-dot strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: .82;
}

.daily-timeline-dot span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.daily-timeline-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 12%, transparent), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.daily-timeline-entry:hover .daily-timeline-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.daily-timeline-card h3 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 3.3vw, 54px);
}

.daily-timeline-card p {
  color: var(--muted);
  line-height: 1.9;
}

/* ---------- Article Detail ---------- */
.article-card {
  width: min(980px, calc(100% - 40px));
  margin: calc(var(--header-h) + 72px) auto 88px;
  padding: clamp(32px, 5vw, 62px);
}

.article-card h1 {
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 86px);
}

.article-body {
  margin-top: 34px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.96;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: 30px;
  align-items: stretch;
}

.about-card,
.quote-card {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.about-card p + p {
  margin-top: 18px;
}

.quote-card {
  display: grid;
  align-content: center;
}

.quote-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.quote-card p {
  margin-top: 18px;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

/* ---------- Closing ---------- */
.closing-section {
  padding-top: 64px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  background: #a1355a;
  color: #fff;
  box-shadow: 0 30px 90px color-mix(in srgb, var(--primary) 28%, transparent);
  text-align: center;
  isolation: isolate;
}

.closing-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 42%;
  height: 340%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
  animation: hissezWhiteSweep 7.5s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.closing-card .eyebrow {
  color: rgba(255,255,255,.86);
}

.closing-card h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
}

.closing-card p {
  width: min(720px, 100%);
  margin: 18px auto 0;
  color: rgba(255,255,255,.86);
}

@keyframes hissezWhiteSweep {
  0% { transform: rotate(18deg) translateX(-180%); }
  100% { transform: rotate(18deg) translateX(520%); }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

/* ---------- Utility / State ---------- */
.empty-state {
  padding: 28px;
  color: var(--muted);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s var(--ease), transform .58s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 60%, white);
  outline-offset: 4px;
}

/* ---------- Music Player ---------- */
.music-widget,
.floating-audio,
.hissez-music-widget,
.hissez-audio-root,
#musicToggleHeader {
  display: none !important;
}

.hissez-player {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
}

.hissez-player-toggle {
  min-width: 132px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 45px color-mix(in srgb, var(--primary) 30%, transparent);
  font-weight: 950;
  cursor: pointer;
}

.hissez-player-note {
  font-size: 22px;
}

.hissez-player-toggle.is-playing {
  animation: playerPulse 1.7s ease-in-out infinite;
}

.hissez-player-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: none;
  width: 330px;
  max-width: calc(100vw - 28px);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface-solid);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.hissez-player.is-open .hissez-player-panel {
  display: block;
}

.hissez-player-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hissez-player-head strong {
  display: block;
  color: var(--text-strong);
  font-weight: 950;
}

.hissez-player-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.hissez-player-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.hissez-player-select {
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-solid);
  color: var(--text);
  padding: 0 12px;
  font-weight: 850;
}

.hissez-player-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hissez-player-btn {
  height: 44px;
  border-radius: 14px;
  border: 0;
  font-weight: 950;
  cursor: pointer;
}

.hissez-player-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.hissez-player-btn.secondary {
  color: var(--primary);
  border: 1px solid var(--border);
  background: var(--primary-soft);
}

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

/* ---------- Motion / Responsive ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .64fr);
    gap: 40px;
  }

  .hero-card {
    max-width: 440px;
  }

  .paper-card h2 {
    font-size: clamp(24px, 3vw, 38px);
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-md);
    background: var(--surface-solid);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-tools {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 44px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    max-width: 100%;
    justify-self: stretch;
  }

  .paper-card {
    max-width: 520px;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .post-card .read-more {
    grid-column: 1 / -1;
    min-height: 58px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .daily-timeline-list::before {
    left: 39px;
  }

  .daily-timeline-entry {
    grid-template-columns: 78px 1fr;
    gap: 18px;
  }

  .daily-timeline-entry.left .daily-timeline-card,
  .daily-timeline-entry.right .daily-timeline-card {
    grid-column: 2;
  }

  .daily-timeline-dot {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-wordmark {
    font-size: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .section-link,
  .read-more {
    width: 100%;
  }

  .paper-card {
    padding: 28px 24px;
    border-radius: 26px;
  }

  .paper-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card-date {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .poem-book-entry {
    grid-template-columns: 1fr;
  }

  .poem-book-left {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .poem-book-right {
    padding: 28px 24px;
  }

  .daily-timeline-list::before {
    display: none;
  }

  .daily-timeline-entry {
    grid-template-columns: 1fr;
  }

  .daily-timeline-dot {
    grid-column: 1;
    margin: 0 0 12px;
  }

  .daily-timeline-entry.left .daily-timeline-card,
  .daily-timeline-entry.right .daily-timeline-card {
    grid-column: 1;
  }

  .article-card {
    width: min(100% - 28px, 980px);
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hissez-player {
    right: 14px;
    bottom: 14px;
  }

  .hissez-player-toggle {
    min-width: 114px;
    height: 52px;
    padding: 0 18px;
  }

  .hissez-player-panel {
    width: calc(100vw - 28px);
    bottom: 64px;
  }
}


/* --- Pinterest footer + hakkımda linkleri --- */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-solid, #fffaf8) 86%, transparent);
  color: var(--primary);
  font-weight: 900;
  box-shadow: var(--shadow-xs, 0 8px 22px rgba(85,17,39,.07));
  transition: transform .22s var(--ease, ease), box-shadow .22s var(--ease, ease), background .22s var(--ease, ease);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm, 0 18px 46px rgba(85,17,39,.10));
}

.social-icon {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.pinterest-about-card {
  width: min(1140px, calc(100% - 40px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg, 36px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 12%, transparent), transparent 24rem),
    var(--surface, rgba(255,250,248,.88));
  box-shadow: var(--shadow-sm, 0 18px 46px rgba(85,17,39,.10));
}

.pinterest-about-card h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 54px);
}

.pinterest-about-card p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.pinterest-cta {
  gap: 10px;
  min-width: 190px;
}

.pinterest-cta .social-icon {
  width: 20px;
  height: 20px;
}

html[data-theme="dark"] .social-link,
body[data-theme="dark"] .social-link {
  background: color-mix(in srgb, var(--surface-solid, #171214) 88%, transparent);
}

@media (max-width: 720px) {
  .footer-social {
    justify-content: center;
  }

  .pinterest-about-card {
    width: min(100% - 28px, 1140px);
    grid-template-columns: 1fr;
  }

  .pinterest-cta {
    width: 100%;
  }
}


/* --- Pinterest mobil düzeltme: ikon taşmasını kesin engelle --- */
.social-icon,
.pinterest-icon,
.pinterest-link svg,
.pinterest-cta svg,
.about-pinterest-compact svg,
.footer-social svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  display: inline-block !important;
  flex: 0 0 18px !important;
  fill: currentColor !important;
  transform: none !important;
}

.pinterest-about-card {
  display: none !important;
}

.footer-social {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.social-link.pinterest-link {
  width: auto !important;
  max-width: 100% !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.about-pinterest-compact {
  width: min(1140px, calc(100% - 40px));
  margin: 28px auto 0;
}

.about-pinterest-compact a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary), var(--primary-2, var(--primary)));
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-sm, 0 18px 46px rgba(85,17,39,.10));
}

@media (max-width: 720px) {
  .footer-inner {
    gap: 10px !important;
  }

  .footer-social {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .social-link.pinterest-link {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }

  .about-pinterest-compact {
    width: min(100% - 28px, 1140px);
    margin-top: 20px;
  }

  .about-pinterest-compact a {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }
}


/* --- Hakkımda sayfası Pinterest alanı yeniden tasarlandı --- */
.about-pinterest-compact {
  display: none !important;
}

.about-pinterest-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 10%, transparent), transparent 22rem),
    var(--surface, rgba(255,250,248,.92));
  box-shadow: var(--shadow-sm, 0 18px 46px rgba(85,17,39,.10));
}

.about-pinterest-copy h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.06;
}

.about-pinterest-copy p {
  margin-top: 14px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.85;
}

.about-pinterest-button {
  min-width: 205px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2, var(--primary)));
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-sm, 0 18px 46px rgba(85,17,39,.10));
  white-space: nowrap;
}

.about-pinterest-button:hover {
  transform: translateY(-2px);
}

.about-pinterest-button .pinterest-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
}

@media (max-width: 720px) {
  .about-pinterest-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .about-pinterest-copy h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .about-pinterest-copy p {
    line-height: 1.72;
  }

  .about-pinterest-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
  }
}


/* ===== HAKKIMDA / PINTEREST PRO SECTION ===== */
.about-pinterest-compact,
.about-pinterest-panel,
.pinterest-about-card {
  display: none !important;
}

.hissez-pinterest-showcase {
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 280px !important;
  gap: 28px !important;
  align-items: center !important;
  padding: 38px 42px !important;
  border-radius: 34px !important;
  background: linear-gradient(135deg, #7f1734 0%, #9f2b50 48%, #cb6d8d 100%) !important;
  box-shadow: 0 28px 70px rgba(127, 23, 52, 0.18) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.hissez-pinterest-showcase::before,
.hissez-pinterest-showcase::after {
  content: "" !important;
  position: absolute !important;
  border-radius: 999px !important;
  pointer-events: none !important;
}

.hissez-pinterest-showcase::before {
  width: 280px !important;
  height: 280px !important;
  right: -80px !important;
  top: -90px !important;
  background: rgba(255,255,255,0.12) !important;
}

.hissez-pinterest-showcase::after {
  width: 180px !important;
  height: 180px !important;
  left: -50px !important;
  bottom: -70px !important;
  background: rgba(255,255,255,0.08) !important;
}

.hissez-pinterest-showcase__content,
.hissez-pinterest-showcase__side,
.hissez-pinterest-showcase__meta,
.hissez-pinterest-showcase__badge,
.hissez-pinterest-showcase__button {
  position: relative !important;
  z-index: 1 !important;
}

.hissez-pinterest-showcase__eyebrow {
  display: inline-block !important;
  margin-bottom: 10px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,0.88) !important;
}

.hissez-pinterest-showcase__content h2 {
  margin: 0 0 12px 0 !important;
  color: #ffffff !important;
  font-size: clamp(30px, 4vw, 50px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

.hissez-pinterest-showcase__content p {
  margin: 0 !important;
  max-width: 760px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
  font-weight: 500 !important;
}

.hissez-pinterest-showcase__meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.hissez-pinterest-showcase__meta span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.hissez-pinterest-showcase__side {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 14px !important;
}

.hissez-pinterest-showcase__badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 46px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.hissez-pinterest-mark {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.18) !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  font-family: Georgia, serif !important;
}

.hissiez-pinterest-mark--button {
  background: rgba(127, 23, 52, 0.10) !important;
  color: #7f1734 !important;
}

.hissez-pinterest-showcase__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 210px !important;
  min-height: 56px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #7f1734 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.hissez-pinterest-showcase__button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 38px rgba(0,0,0,0.18) !important;
}

html[data-theme="dark"] .hissez-pinterest-showcase,
body[data-theme="dark"] .hissez-pinterest-showcase {
  background: linear-gradient(135deg, #5e1027 0%, #7a1b3a 50%, #a74567 100%) !important;
}

@media (max-width: 900px) {
  .hissez-pinterest-showcase {
    grid-template-columns: 1fr !important;
    padding: 30px 24px !important;
    gap: 20px !important;
    border-radius: 28px !important;
  }

  .hissez-pinterest-showcase__side {
    align-items: flex-start !important;
  }
}

@media (max-width: 640px) {
  .hissez-pinterest-showcase {
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .hissez-pinterest-showcase__content h2 {
    font-size: clamp(26px, 8vw, 36px) !important;
  }

  .hissez-pinterest-showcase__content p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hissez-pinterest-showcase__meta span {
    font-size: 12px !important;
    min-height: 32px !important;
  }

  .hissez-pinterest-showcase__badge {
    min-height: 40px !important;
    font-size: 13px !important;
  }

  .hissez-pinterest-showcase__button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    font-size: 15px !important;
  }
}


/* ===== HAKKIMDA SAYFASI / PINTEREST TEMIZ TASARIM ===== */
.about-pinterest-compact,
.about-pinterest-panel,
.pinterest-about-card,
.hissez-pinterest-showcase {
  display: none !important;
}

.pinterest-feature-v2 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 300px !important;
  gap: 28px !important;
  align-items: center !important;
  padding: 34px 36px !important;
  border-radius: 32px !important;
  border: 1px solid rgba(143, 42, 74, 0.12) !important;
  background:
    radial-gradient(circle at top right, rgba(181, 79, 112, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.92)) !important;
  box-shadow: 0 18px 48px rgba(70, 24, 41, 0.08) !important;
}

html[data-theme="dark"] .pinterest-feature-v2,
body[data-theme="dark"] .pinterest-feature-v2 {
  border-color: rgba(255,255,255,0.08) !important;
  background:
    radial-gradient(circle at top right, rgba(181, 79, 112, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(22,18,20,0.96), rgba(28,20,24,0.98)) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,0.26) !important;
}

.pinterest-feature-v2__content h2 {
  margin: 10px 0 12px !important;
  font-size: clamp(30px, 3.6vw, 48px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.pinterest-feature-v2__content p {
  margin: 0 !important;
  max-width: 760px !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
  color: var(--muted) !important;
}

html[data-theme="dark"] .pinterest-feature-v2__content p,
body[data-theme="dark"] .pinterest-feature-v2__content p {
  color: rgba(255,255,255,0.76) !important;
}

.pinterest-feature-v2__eyebrow {
  display: inline-block !important;
  margin-bottom: 2px !important;
  color: var(--primary) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.pinterest-feature-v2__tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.pinterest-feature-v2__tags span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(143, 42, 74, 0.12) !important;
  background: rgba(255,255,255,0.76) !important;
  color: var(--heading) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

html[data-theme="dark"] .pinterest-feature-v2__tags span,
body[data-theme="dark"] .pinterest-feature-v2__tags span {
  border-color: rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

.pinterest-feature-v2__side {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}

.pinterest-feature-v2__mini {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 18px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(143, 42, 74, 0.12) !important;
  background: rgba(255,255,255,0.72) !important;
}

html[data-theme="dark"] .pinterest-feature-v2__mini,
body[data-theme="dark"] .pinterest-feature-v2__mini {
  border-color: rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.05) !important;
}

.pinterest-feature-v2__mini-text {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

.pinterest-feature-v2__mini-text strong {
  color: var(--heading) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.pinterest-feature-v2__mini-text small {
  margin-top: 3px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

html[data-theme="dark"] .pinterest-feature-v2__mini-text strong,
body[data-theme="dark"] .pinterest-feature-v2__mini-text strong {
  color: #fff !important;
}

html[data-theme="dark"] .pinterest-feature-v2__mini-text small,
body[data-theme="dark"] .pinterest-feature-v2__mini-text small {
  color: rgba(255,255,255,0.68) !important;
}

.pinterest-feature-v2__badge {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #8f2a4a, #c1547d) !important;
  color: #fff !important;
  font-family: Georgia, serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(143, 42, 74, 0.24) !important;
}

.pinterest-feature-v2__button {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #8f2a4a, #c1547d) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  box-shadow: 0 18px 36px rgba(143, 42, 74, 0.22) !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.pinterest-feature-v2__button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 42px rgba(143, 42, 74, 0.26) !important;
}

.pinterest-feature-v2__badge--button {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  font-size: 15px !important;
  background: rgba(255,255,255,0.16) !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .pinterest-feature-v2 {
    grid-template-columns: 1fr !important;
    padding: 28px 24px !important;
  }
}

@media (max-width: 640px) {
  .pinterest-feature-v2 {
    gap: 18px !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  .pinterest-feature-v2__content h2 {
    font-size: clamp(24px, 7vw, 34px) !important;
  }

  .pinterest-feature-v2__content p {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .pinterest-feature-v2__tags {
    gap: 8px !important;
  }

  .pinterest-feature-v2__tags span {
    min-height: 32px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }

  .pinterest-feature-v2__mini {
    padding: 14px 14px !important;
    border-radius: 18px !important;
  }

  .pinterest-feature-v2__button {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 14px !important;
  }

  .pinterest-feature-v2__badge {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    font-size: 16px !important;
  }

  .pinterest-feature-v2__badge--button {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    font-size: 14px !important;
  }
}


/* ===== PINTEREST LOGO FIX ===== */
.pinterest-feature-v2__badge,
.pinterest-feature-v2__badge--button {
  display: none !important;
}

.pinterest-feature-v2__icon-wrap {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #8f2a4a, #c1547d) !important;
  color: #ffffff !important;
  flex: 0 0 34px !important;
  box-shadow: 0 10px 24px rgba(143, 42, 74, 0.24) !important;
}

.pinterest-feature-v2__icon-wrap--button {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 28px !important;
  background: rgba(255,255,255,0.16) !important;
  box-shadow: none !important;
}

.pinterest-fixed-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  display: block !important;
  flex: 0 0 18px !important;
  fill: currentColor !important;
}

.pinterest-feature-v2__icon-wrap--button .pinterest-fixed-icon {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex: 0 0 14px !important;
}

@media (max-width: 640px) {
  .pinterest-feature-v2__icon-wrap {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    flex: 0 0 30px !important;
  }

  .pinterest-feature-v2__icon-wrap--button {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    flex: 0 0 26px !important;
  }

  .pinterest-fixed-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }

  .pinterest-feature-v2__icon-wrap--button .pinterest-fixed-icon {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
  }
}
