﻿.club52-site {
  --club-bg: #030303;
  --club-panel: rgba(255, 255, 255, 0.045);
  --club-panel-strong: rgba(255, 255, 255, 0.08);
  --club-line: rgba(255, 255, 255, 0.13);
  --club-text: #fafafa;
  --club-muted: rgba(250, 250, 250, 0.66);
  --club-soft: rgba(250, 250, 250, 0.42);
  --club-gold: #c87333;
  --club-orange: #e07a2f;
  --club-teal: #c87333;
  --club-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(224, 122, 47, 0.09), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(200, 115, 51, 0.045), transparent 34%),
    linear-gradient(180deg, #020202, var(--club-bg) 46%, #050505);
  color: var(--club-text);
  font-family: "Aptos", "Segoe UI", "Microsoft JhengHei", sans-serif;
}

.club52-site *,
.club52-site *::before,
.club52-site *::after {
  box-sizing: border-box;
}

.club52-site img {
  max-width: 100%;
}

.club52-site::before {
  display: none;
}

.club52-site h1,
.club52-site h2,
.club52-site h3,
.club52-site p {
  margin-top: 0;
}

.club52-site a {
  color: inherit;
  text-decoration: none;
}

.club52-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.club52-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(170px, 0.4fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 15px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 3, 0.66);
  backdrop-filter: blur(22px);
}

.club52-brand,
.club52-nav,
.club52-contact,
.club52-button,
.club52-back {
  position: relative;
  z-index: 1;
}

.club52-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--club-text);
  font-family: Georgia, "Times New Roman", "Microsoft JhengHei", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.club52-mark {
  display: inline-flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--club-orange), var(--club-gold));
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 28px rgba(224, 122, 47, 0.34);
}

.club52-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(224, 122, 47, 0.34);
}

.club52-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.club52-header-menu {
  display: none;
  position: relative;
  z-index: 2;
}

.club52-header-menu summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 115, 51, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--club-gold);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.club52-header-menu summary::-webkit-details-marker {
  display: none;
}

.club52-header-menu div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(200, 115, 51, 0.34);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: var(--club-shadow);
}

.club52-header-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 900;
}

.club52-header-menu a:hover {
  background: rgba(224, 122, 47, 0.12);
  color: var(--club-text);
}

.club52-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 38px);
  color: var(--club-muted);
  font-size: 13px;
  font-weight: 800;
}

.club52-nav a,
.club52-contact {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.club52-nav a:hover {
  color: var(--club-text);
}

.club52-contact,
.club52-button,
.club52-back {
  justify-content: center;
  border: 1px solid rgba(200, 115, 51, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--club-gold);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.club52-contact:hover,
.club52-button:hover,
.club52-back:hover {
  border-color: var(--club-gold);
  background: var(--club-gold);
  color: #090909;
  box-shadow: 0 0 30px rgba(200, 115, 51, 0.24);
  transform: translateY(-2px);
}

.club52-hero,
.club52-about,
.club52-latest,
.club52-ideas,
.club52-gallery-band,
.club52-topic-hero,
.club52-topic-section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.club52-hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.club52-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--club-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.club52-hero h1,
.club52-section-copy h2,
.club52-topic-hero h1 {
  font-family: Georgia, "Noto Serif TC", "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
}

.club52-hero h1 {
  max-width: 960px;
  margin-bottom: 30px;
  font-size: clamp(48px, 6.25vw, 90px);
  line-height: 1.08;
}

.club52-hero h1 span {
  display: block;
}

.club52-nowrap {
  white-space: nowrap;
}

.club52-hero h1 span:nth-child(2),
.club52-topic-hero h1 {
  background: linear-gradient(90deg, #ffffff, var(--club-gold) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.club52-hero-copy > p,
.club52-section-copy > p,
.club52-prose p,
.club52-feature-card p,
.club52-theme-grid p,
.club52-topic-hero p,
.club52-ppt-card figcaption,
.club52-note-list p {
  color: var(--club-muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.82;
}

.club52-hero-copy > p {
  max-width: 760px;
}

.club52-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.club52-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  text-align: center;
}

.club52-actions .club52-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.club52-button.primary {
  border-color: var(--club-gold);
  background: var(--club-gold);
  color: #090909;
}

.club52-contact.subtle {
  color: rgba(250, 250, 250, 0.72);
}

.club52-orbit {
  position: relative;
  min-height: 620px;
}

.club52-orbit-ring {
  position: absolute;
  inset: 8% 3% 8% 8%;
  border: 1px solid rgba(200, 115, 51, 0.18);
  border-radius: 50%;
  animation: club52Pulse 5s ease-in-out infinite;
}

.club52-orbit-ring::before,
.club52-orbit-ring::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
}

.club52-orbit-ring::after {
  inset: 28%;
  border-color: rgba(200, 115, 51, 0.14);
}

.club52-book,
.club52-floating-note,
.club52-topic-card,
.club52-feature-card,
.club52-theme-grid article,
.club52-ppt-card,
.club52-note-list article {
  border: 1px solid var(--club-line);
  background: var(--club-panel);
  box-shadow: var(--club-shadow);
  backdrop-filter: blur(18px);
}

.club52-book {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: 1;
  width: min(330px, 58vw);
  min-height: 470px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(200, 115, 51, 0.17), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.club52-book span,
.club52-book em,
.club52-small,
.club52-feature-card span,
.club52-floating-note span,
.club52-topic-card span,
.club52-ppt-image span,
.club52-theme-grid span {
  color: var(--club-gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.club52-book span,
.club52-book em {
  display: block;
}

.club52-book strong {
  display: block;
  max-width: 240px;
  margin: 108px 0 104px;
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
}

.club52-floating-note {
  position: absolute;
  right: 0;
  z-index: 2;
  width: min(285px, 48vw);
  padding: 24px;
}

.club52-floating-note strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: 27px;
  line-height: 1.24;
}

.club52-floating-note.note-a {
  top: 20%;
  animation: club52Float 6s ease-in-out infinite;
}

.club52-floating-note.note-b {
  right: 8%;
  bottom: 13%;
  animation: club52Float 6s ease-in-out 1.2s infinite;
}

.club52-feather {
  position: absolute;
  right: 10%;
  top: 8%;
  width: 94px;
  height: 190px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(224, 122, 47, 0.95), rgba(255, 255, 255, 0.12));
  filter: blur(0.3px);
  transform: rotate(38deg);
  opacity: 0.88;
}

.club52-about,
.club52-latest,
.club52-topic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.club52-section-copy h2 {
  max-width: 860px;
  margin: 16px 0 0;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.12;
}

.club52-prose {
  display: grid;
  gap: 22px;
}

.club52-filter-panel {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-top: 32px;
}

.club52-search {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.club52-filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 12px;
}

.club52-field {
  display: grid;
  gap: 10px;
}

.club52-search label,
.club52-field label,
.club52-sort-group > span {
  color: var(--club-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.club52-search input,
.club52-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--club-text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.club52-field input {
  color-scheme: dark;
}

.club52-search input::placeholder {
  color: rgba(250, 250, 250, 0.36);
}

.club52-search input:focus,
.club52-field input:focus {
  border-color: rgba(200, 115, 51, 0.74);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(200, 115, 51, 0.13);
}

.club52-sort-group {
  display: grid;
  gap: 10px;
}

.club52-sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club52-tag-filter,
.club52-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club52-sort-options button,
.club52-tag-filter button,
.club52-tags small {
  min-height: 34px;
  border: 1px solid rgba(200, 115, 51, 0.34);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.12);
  color: rgba(250, 250, 250, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.club52-sort-options button,
.club52-tag-filter button {
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.club52-sort-options button:hover,
.club52-sort-options button.is-active,
.club52-tag-filter button:hover,
.club52-tag-filter button.is-active {
  border-color: rgba(224, 122, 47, 0.76);
  background: rgba(224, 122, 47, 0.16);
  color: var(--club-text);
}

.club52-sort-options button:hover,
.club52-tag-filter button:hover {
  transform: translateY(-1px);
}

.club52-tags {
  margin: -2px 0 18px;
}

.club52-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--club-gold);
}

.club52-latest,
.club52-gallery-band,
.club52-topic-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.club52-feature-card {
  display: grid;
  min-height: 360px;
  align-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 18px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.club52-share-list {
  display: grid;
  gap: 20px;
}

.club52-feature-card[hidden],
.club52-empty[hidden] {
  display: none;
}

.club52-share-list .club52-feature-card {
  min-height: 280px;
}

.club52-feature-card:hover,
.club52-theme-grid article:hover,
.club52-ppt-card:hover,
.club52-note-list article:hover {
  border-color: rgba(200, 115, 51, 0.54);
  background: var(--club-panel-strong);
  transform: translateY(-8px);
}

.club52-feature-card h3 {
  margin: 18px 0 18px;
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: clamp(29px, 3.2vw, 44px);
  line-height: 1.16;
}

.club52-feature-card > strong {
  color: var(--club-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.club52-empty {
  margin: 8px 0 0;
  color: var(--club-muted);
  font-size: 16px;
}

.club52-ideas {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.club52-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.club52-theme-grid article {
  min-height: 310px;
  padding: 30px;
  border-radius: 18px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.club52-theme-grid h3,
.club52-note-list h3 {
  margin: 46px 0 16px;
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: 31px;
  line-height: 1.22;
}

.club52-gallery-band {
  display: grid;
  gap: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.club52-note-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--club-line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.club52-note-row span {
  min-height: 120px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--club-line);
  color: var(--club-text);
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: clamp(20px, 2.2vw, 30px);
}

.club52-note-row span:last-child {
  border-right: 0;
}

.club52-topic-hero {
  display: grid;
  min-height: 74vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.club52-topic-hero.compact {
  grid-template-columns: minmax(0, 1fr);
  min-height: 58vh;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.club52-topic-hero.compact > div:first-child {
  max-width: 1120px;
}

.club52-back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
}

.club52-topic-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.08;
}

.club52-topic-card {
  min-height: 310px;
  display: grid;
  align-content: space-between;
  padding: 34px;
  border-radius: 22px;
}

.club52-topic-card strong {
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.club52-slide-section {
  display: block;
}

.club52-ppt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.club52-ppt-card {
  margin: 0;
  padding: 16px;
  border-radius: 22px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.club52-ppt-image {
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(200, 115, 51, 0.16), transparent 52%),
    #f7fbfb;
  color: #11182a;
}

.club52-ppt-image.warm {
  background:
    linear-gradient(135deg, rgba(224, 122, 47, 0.22), transparent 52%),
    #fff7ec;
}

.club52-ppt-image.cool {
  background:
    linear-gradient(135deg, rgba(200, 115, 51, 0.18), rgba(224, 122, 47, 0.12)),
    #f5fbf8;
}

.club52-ppt-image strong {
  display: block;
  font-family: Georgia, "Noto Serif TC", serif;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.18;
}

.club52-ppt-image em {
  color: rgba(17, 24, 42, 0.56);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.club52-ppt-card figcaption {
  margin-top: 16px;
  padding: 0 4px 4px;
  font-size: 15px;
}

.club52-note-list {
  display: grid;
  gap: 18px;
}

.club52-note-list article {
  padding: 28px;
  border-radius: 18px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.club52-note-list h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.club52-image-story {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px) clamp(80px, 10vw, 140px);
}

.club52-story-image {
  margin: 0;
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid var(--club-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--club-shadow);
  backdrop-filter: blur(18px);
}

.club52-story-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
}

.club52-reveal {
  opacity: 1;
  transform: none;
  animation: club52FadeUp 760ms ease both;
}

.club52-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes club52Float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes club52Pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes club52FadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .club52-reveal,
  .club52-floating-note,
  .club52-orbit-ring {
    animation: none;
    transition: none;
  }

  .club52-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .club52-header,
  .club52-hero,
  .club52-about,
  .club52-latest,
  .club52-topic-hero,
  .club52-topic-section {
    grid-template-columns: 1fr;
  }

  .club52-header {
    position: static;
  }

  .club52-nav {
    justify-content: flex-start;
  }

  .club52-contact {
    width: fit-content;
  }

  .club52-hero {
    min-height: auto;
  }

  .club52-orbit {
    min-height: 560px;
  }

  .club52-theme-grid,
  .club52-ppt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .club52-header {
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    padding: 12px 18px;
  }

  .club52-mark {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .club52-logo {
    width: 42px;
    height: 42px;
  }

  .club52-nav {
    grid-column: 1 / 2;
    grid-row: 2;
    gap: 8px 17px;
  }

  .club52-header-actions {
    display: none;
  }

  .club52-header-menu {
    display: block;
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: end;
  }

  .club52-hero,
  .club52-about,
  .club52-latest,
  .club52-ideas,
  .club52-gallery-band,
  .club52-topic-hero,
  .club52-topic-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .club52-hero h1 {
    font-size: 42px;
  }

  .club52-topic-hero h1 {
    font-size: 40px;
  }

  .club52-actions,
  .club52-button {
    width: 100%;
  }

  .club52-filter-panel,
  .club52-search {
    max-width: none;
  }

  .club52-filter-row {
    grid-template-columns: 1fr;
  }

  .club52-sort-options button,
  .club52-tag-filter button {
    min-height: 40px;
  }

  .club52-orbit {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .club52-orbit-ring,
  .club52-feather {
    display: none;
  }

  .club52-book,
  .club52-floating-note,
  .club52-floating-note.note-a,
  .club52-floating-note.note-b {
    position: static;
    width: 100%;
  }

  .club52-book {
    min-height: 360px;
  }

  .club52-book strong {
    margin: 78px 0 82px;
  }

  .club52-theme-grid,
  .club52-ppt-grid,
  .club52-note-row {
    grid-template-columns: 1fr;
  }

  .club52-note-row span {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--club-line);
  }

  .club52-note-row span:last-child {
    border-bottom: 0;
  }

  .club52-theme-grid article,
  .club52-ppt-card {
    min-height: 260px;
  }

  .club52-image-story {
    gap: 18px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .club52-story-image {
    border-radius: 16px;
    padding: 8px;
  }

  .club52-story-image img {
    border-radius: 10px;
  }
}
