
:root {
  --rk-bg: #0a2240;
  --rk-bg2: #071832;
  --rk-card: rgba(16, 44, 81, .96);
  --rk-pink: #e5024a;
  --rk-pink2: #ff2c6a;
  --rk-white: #fff;
  --rk-muted: #c7d2e1;
  --rk-border: rgba(255, 255, 255, .12);
  --rk-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: var(--rk-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://rekapet.com/rekapet-arkaplan.png") !important;
  background-color: #071832 !important;
  background-position: center top !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  z-index: -1;
  pointer-events: none;
}

body.modal-active {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  background: rgba(10, 34, 64, .96) !important;
  border-bottom: 1px solid var(--rk-border) !important;
  backdrop-filter: blur(12px);
}

.header-inner,
.nav-wrap {
  min-height: 82px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 12px 0 !important;
}

.brand-logo,
.site-logo {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.brand-logo img,
.site-logo img,
.site-header img {
  display: block !important;
  height: 100px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.main-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  transition: .22s ease !important;
}

.main-nav a:hover {
  background: var(--rk-pink) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.main-nav svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.menu-toggle,
.mobile-menu-toggle {
  display: none !important;
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid var(--rk-border) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .04) !important;
  cursor: pointer !important;
}

.menu-toggle span,
.mobile-menu-toggle span {
  position: absolute !important;
  left: 12px !important;
  width: 22px !important;
  height: 2px !important;
  background: #fff !important;
  border-radius: 99px !important;
  transition: .22s ease !important;
}

.menu-toggle span:nth-child(1),
.mobile-menu-toggle span:nth-child(1) {
  top: 15px !important;
}

.menu-toggle span:nth-child(2),
.mobile-menu-toggle span:nth-child(2) {
  top: 22px !important;
}

.menu-toggle span:nth-child(3),
.mobile-menu-toggle span:nth-child(3) {
  top: 29px !important;
}

.menu-toggle.open span:nth-child(1),
.mobile-menu-toggle.open span:nth-child(1) {
  top: 22px !important;
  transform: rotate(45deg) !important;
}

.menu-toggle.open span:nth-child(2),
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0 !important;
}

.menu-toggle.open span:nth-child(3),
.mobile-menu-toggle.open span:nth-child(3) {
  top: 22px !important;
  transform: rotate(-45deg) !important;
}

/* HERO */
.hero-banner,
.home-banner-wrap {
  padding: 26px 0 16px;
}

.hero-banner img,
.home-banner-img,
.home-banner-box img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(229, 2, 74, .24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.home-banner-box {
  border-radius: 22px;
  overflow: hidden;
}

/* STORY / KAYAN RESİMLER */
.story-section,
.stories-section {
  padding: 8px 0 28px;
}

.story-slider,
.stories-track {
  overflow: hidden;
  padding: 4px 0;
}

.story-track,
.stories-row {
  width: max-content;
  display: flex;
  gap: 24px;
  animation: rkStoryMove 42s linear infinite;
}

.story-slider:hover .story-track,
.stories-track:hover .stories-row {
  animation-play-state: paused;
}

.story-item {
  width: 104px;
  min-width: 104px;
  text-align: center;
  color: #dfe7f4;
  font-weight: 800;
  font-size: 13px;
}

.story-avatar,
.story-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 9px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rk-pink), #fff);
}

.story-avatar img,
.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

.story-item span:last-child {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes rkStoryMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* POST KARTLARI */
.post-list-section,
.posts-section {
  padding: 8px 0 46px;
}

.post-grid,
.posts-grid,
.posts-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 26px;
}

.post-card,
.post-modern-card {
  position: relative;
  background: #fff;
  color: #10284a;
  border-radius: 14px;
  box-shadow: var(--rk-shadow);
  overflow: visible;
}

.post-image,
.post-open-btn,
.post-modern-image-wrap {
  display: block;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #e9eef5;
}

.post-image img,
.post-modern-image-wrap img,
.post-card > a > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: .28s ease;
}

.post-card:hover .post-image img,
.post-modern-card:hover .post-modern-image-wrap img {
  transform: scale(1.035);
}

.post-body,
.post-modern-body {
  background: #fff;
  padding: 17px 18px 20px;
  border-radius: 0 0 14px 14px;
}

.post-head,
.post-modern-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.post-user,
.post-modern-user {
  color: #10284a;
  font-size: 17px;
  font-weight: 900;
}

.post-actions,
.post-modern-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-icon-btn,
.icon-btn,
.like-btn {
  border: 0;
  background: transparent;
  color: #536176;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  padding: 0;
}

.post-icon-btn span,
.icon-btn .icon {
  color: var(--rk-pink);
  font-size: 23px;
  line-height: 1;
}

.post-icon-btn:hover,
.post-icon-btn.liked,
.icon-btn:hover,
.like-btn.liked {
  color: var(--rk-pink);
}

.post-note,
.post-modern-note {
  margin: 0;
  color: #526174;
  font-size: 14px;
  line-height: 1.6;
}

/* POPUP / MODAL */
.post-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, .78) !important;
  padding: 20px !important;
}

.post-modal.open {
  display: flex !important;
}

.post-modal-card {
  position: relative !important;
  width: min(900px, 96vw) !important;
  max-height: 92vh !important;
  overflow-y: auto !important;
  background: #fff !important;
  color: #10284a !important;
  border-radius: 22px !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45) !important;
}

.post-modal-image {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #f5f6f9 !important;
}

.post-modal-image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 70vh !important;
  object-fit: contain !important;
}

.post-modal-content {
  padding: 22px !important;
  text-align: center !important;
}

.post-modal-content h2 {
  margin: 0 0 12px !important;
  color: #10284a !important;
  font-size: 28px !important;
  font-weight: 900 !important;
}

.post-modal-content p {
  margin: 0 !important;
  color: #526174 !important;
  line-height: 1.7 !important;
}

.modal-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--rk-pink) !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.modal-view-link {
  display: none !important;
}

/* PAYLAŞ MENÜSÜ */
.share-menu {
  position: relative;
}

.share-dropdown {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 170px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
  border: 1px solid rgba(16, 40, 74, .08);
  display: none;
  z-index: 2000;
}

.share-menu.open .share-dropdown {
  display: block;
}

.share-option,
.share-link {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: #10284a;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
}

.share-option:hover,
.share-link:hover {
  background: #f3f6fb;
}

/* FORM / SAYFALAR */
.center-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 36px 0;
}

.submit-page,
.blog-page,
.blog-detail-page,
.single-post-page {
  padding: 34px 0 46px;
}

.submit-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(16, 44, 81, .92);
  border: 1px solid var(--rk-border);
  box-shadow: var(--rk-shadow);
}

.submit-rules,
.submit-form-card {
  padding: 28px;
}

.submit-rules {
  border-right: 1px solid var(--rk-border);
  background: rgba(7, 24, 50, .38);
}

.submit-rules h1,
.submit-form-card h1,
.page-head h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 30px;
}

.rule-card {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
}

.rule-card h3 {
  margin: 0 0 8px;
  color: #ff8aaa;
}

.rule-card p {
  margin: 0;
  color: #d9e4f4;
  line-height: 1.55;
}

.modern-form label {
  display: block;
  margin: 16px 0 8px;
  color: #fff;
  font-weight: 800;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  border: 1px solid var(--rk-border);
  border-radius: 14px;
  background: #0d2747;
  color: #fff;
  padding: 14px;
  outline: none;
}

.modern-form textarea {
  min-height: 140px;
  resize: vertical;
}

.primary-btn,
.main-btn,
.submit-btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  margin-top: 20px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rk-pink), var(--rk-pink2));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(229, 2, 74, .28);
}

.upload-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.upload-box input[type="file"] {
  display: none;
}

.upload-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 230px !important;
  min-height: 56px !important;
  padding: 0 22px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #e5024a, #ff2c6a) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  text-align: center !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(229, 2, 74, .35) !important;
}

.upload-btn:hover {
  background: linear-gradient(135deg, #ff2c6a, #ff4d83) !important;
  transform: translateY(-1px) !important;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  margin: 16px 0;
  font-weight: 700;
}

.notice.success,
.notice-success {
  background: rgba(50, 210, 150, .16);
  color: #8df0c4;
}

.notice.error,
.notice-error {
  background: rgba(255, 107, 107, .16);
  color: #ffd0d0;
}

/* BLOG */
.page-head {
  margin-bottom: 24px;
}

.page-head p {
  margin: 0;
  color: var(--rk-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card a,
.blog-detail-card,
.empty-state,
.status-card {
  display: block;
  background: var(--rk-card);
  border: 1px solid var(--rk-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--rk-shadow);
}

.blog-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 2, 74, .35);
}

.blog-date,
.back-link {
  color: #ff8aaa;
  font-weight: 900;
}

.blog-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.blog-card p,
.blog-content,
.status-card p {
  color: var(--rk-muted);
  line-height: 1.65;
}

.blog-card strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--rk-pink);
  color: #fff;
}

/* FOOTER */
.site-footer,
.footer-modern {
  margin-top: auto;
  background: var(--rk-bg);
  border-top: 1px solid var(--rk-border);
  padding-top: 44px;
}

.footer-grid,
.footer-modern-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr;
  gap: 42px;
}

.footer-brand img,
.footer-brand-logo img,
.footer-modern img {
  width: auto;
  max-width: 220px;
  margin-bottom: 16px;
}

.footer-col h4,
.footer-modern-col h4 {
  margin: 0 0 16px;
  color: #fff;
}

.footer-col p,
.footer-col a,
.footer-modern-col p,
.footer-modern-col a,
.footer-modern-col li {
  color: #dce6f4;
  line-height: 1.7;
}

.footer-col a,
.footer-modern-col a {
  display: block;
  margin-bottom: 10px;
}

.social-links,
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a,
.footer-socials a {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom,
.footer-modern-bottom {
  margin-top: 36px;
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid var(--rk-border);
  color: #dce6f4;
}

/* YUKARI ÇIK */
.scroll-top,
.scroll-top-btn {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  left: auto !important;
  width: 38px !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--rk-pink) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  box-shadow: 0 10px 25px rgba(229, 2, 74, .35);
}

.scroll-top.show,
.scroll-top-btn.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* ADMIN TEMEL */
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  padding: 22px;
  background: rgba(7, 24, 50, .96);
  border-right: 1px solid var(--rk-border);
}

.admin-sidebar img {
  height: 54px;
  width: auto;
  margin-bottom: 26px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: var(--rk-pink);
}

.admin-main {
  padding: 28px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.admin-stats div,
.admin-card {
  background: var(--rk-card);
  border: 1px solid var(--rk-border);
  border-radius: 20px;
  box-shadow: var(--rk-shadow);
}

.admin-stats div {
  padding: 18px;
}

.admin-stats span {
  display: block;
  color: var(--rk-muted);
  margin-bottom: 8px;
}

.admin-stats strong {
  color: #ff8aaa;
  font-size: 32px;
}

.admin-table-scroll {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--rk-border);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #ff8aaa;
}

.admin-table img {
  width: 90px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.admin-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-actions button {
  border: 0;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
}

.admin-actions button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .post-grid,
  .posts-grid,
  .posts-grid-modern,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .footer-grid,
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .menu-toggle,
  .mobile-menu-toggle {
    display: block !important;
  }

  .main-nav {
    display: none !important;
    position: absolute !important;
    right: 16px !important;
    top: 78px !important;
    width: min(300px, calc(100vw - 32px)) !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: rgba(10, 34, 64, .98) !important;
    border: 1px solid var(--rk-border) !important;
    box-shadow: var(--rk-shadow) !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav a {
    justify-content: flex-start !important;
    border-radius: 12px !important;
  }

  .submit-layout {
    grid-template-columns: 1fr;
  }

  .submit-form-card {
    order: 1;
  }

  .submit-rules {
    order: 2;
    border-right: 0;
    border-top: 1px solid var(--rk-border);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--rk-border);
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo img,
  .site-logo img,
  .site-header img {
    height: 100px !important;
    max-width: 180px !important;
  }

  .post-grid,
  .posts-grid,
  .posts-grid-modern,
  .blog-grid,
  .footer-grid,
  .footer-modern-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .post-image img,
  .post-modern-image-wrap img,
  .post-card > a > img {
    height: 330px;
  }

  .story-item {
    width: 88px;
    min-width: 88px;
  }

  .story-avatar,
  .story-ring {
    width: 78px;
    height: 78px;
  }
}
.main-nav .rekabet-giris-btn {
  background: linear-gradient(135deg,#e5024a,#ff2c6a) !important;
  color: #fff !important;
  font-weight: 900 !important;
  border-radius: 999px !important;
  padding: 0 20px !important;
  box-shadow: 0 10px 24px rgba(229,2,74,.35) !important;
}

.main-nav .rekabet-giris-btn:hover {
  background: linear-gradient(135deg,#ff2c6a,#ff4d83) !important;
  color: #fff !important;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5024a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: all .25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #e5024a;
}

.blog-detail-page {
  padding: 40px 0;
}

.blog-detail-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: #e5024a;
  font-weight: 700;
  text-decoration: none;
}

.blog-detail-header h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #0a2240;
}

.blog-detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 14px;
  color: #666;
}

.blog-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 26px;
  font-weight: 500;
}

.blog-featured-image {
  margin: 26px 0;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.blog-content {
  font-size: 17px;
  line-height: 1.85;
  color: #222;
}

.blog-content h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 36px 0 14px;
  color: #0a2240;
}

.blog-content h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 28px 0 12px;
  color: #0a2240;
}

.blog-content h4 {
  font-size: 20px;
  margin: 24px 0 10px;
  color: #0a2240;
}

.blog-content p {
  margin: 0 0 18px;
}

.blog-content a {
  color: #e5024a;
  font-weight: 700;
  text-decoration: underline;
}

.blog-content ul,
.blog-content ol {
  padding-left: 24px;
  margin: 18px 0;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 5px solid #e5024a;
  background: rgba(229,2,74,.08);
  padding: 18px 22px;
  border-radius: 12px;
  margin: 28px 0;
  font-weight: 600;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .blog-detail-page {
    padding: 22px 0;
  }

  .blog-detail-card {
    padding: 22px;
    border-radius: 18px;
  }

  .blog-content {
    font-size: 16px;
  }

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-content h3 {
    font-size: 21px;
  }
}
