/* Dasabo Theme - Pure CSS - Exact copy from Next.js site */

/* Import Poppins Font - ONLY 500 and 600 weights like Next.js */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Variables */
:root {
  --background: #e6eeff;
  --primary: #0b5ed7;
  --secondary: #a7caff;
  --featured: #ffc041;
  --primary-dark: rgb(19, 23, 41);
  color: #001042;
  scroll-behavior: smooth;
}

/* Body */
body {
  color: var(--primary-dark);
  background: var(--background);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Headings reset */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.relative {
  position: relative;
}

.z-50 {
  z-index: 50;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.hidden {
  display: none;
}

/* Center container utility */
.center {
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .center {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .center {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1536px) {
  .center {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Interact utility */
.interact {
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interact:hover {
  opacity: 0.8;
}

.interact:active {
  opacity: 1;
}

.interact-focus:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: 0 0 0 2px #fff;
  --tw-ring-shadow: 0 0 0 calc(2px + 2px) var(--primary);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow);
}

/* Header Styles */
.dasabo-header {
  position: relative;
  z-index: 50;
}

.dasabo-header-top {
  z-index: 50;
  background-color: #000333;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dasabo-header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.dasabo-logo-container {
  margin-right: 1.5rem;
  width: 12rem;
  height: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .dasabo-logo-container {
    width: 10rem;
  }
}

.dasabo-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dasabo-header-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.dasabo-header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .dasabo-header-actions {
    gap: 2rem;
  }
}

.dasabo-header-support {
  color: #ffffff !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  font-weight: 500 !important;
  cursor: pointer;
  display: none;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  border: none !important;
  background: none !important;
  letter-spacing: normal !important;
}

@media (min-width: 1024px) {
  .dasabo-header-support {
    display: inline-flex;
  }
}

.dasabo-client-btn {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  letter-spacing: -0.025em;
  background-color: #ffffff;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  cursor: pointer;
  color: rgb(19, 23, 41);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 1024px) {
  .dasabo-client-btn {
    display: inline-flex;
  }
}

.dasabo-client-btn b {
  font-weight: 600;
  color: rgb(19, 23, 41);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.dasabo-menu-toggle {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media (min-width: 1024px) {
  .dasabo-menu-toggle {
    display: none;
  }
}

.dasabo-menu-icon {
  width: 1.75rem;
  height: auto;
}

/* Navigation */
.dasabo-nav {
  display: none;
  background-color: white;
  padding: 1rem 0;
  z-index: 100;
}

.dasabo-nav-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  width: 100%;
}

.dasabo-nav-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
}

.dasabo-nav-container > li {
  list-style: none;
}

.dasabo-nav-container > li > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.dasabo-nav-container > li > a:hover {
  opacity: 0.8;
}

.dasabo-nav-container > li > a:active {
  opacity: 1;
}

.dasabo-nav-container > li > a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: 0 0 0 2px #fff;
  --tw-ring-shadow: 0 0 0 calc(2px + 2px) var(--primary);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow);
}

.dasabo-nav-item {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: inherit;
  margin: 0 2.5rem 0 0;
}

.dasabo-nav-header {
  display: none;
  width: 100%;
}

.dasabo-nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dasabo-nav-logo img {
  width: 9rem;
  height: auto;
  display: block;
}

.dasabo-nav-header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.dasabo-nav-client-btn {
  display: none;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  background-color: #ffffff;
  color: rgb(19, 23, 41);
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.dasabo-nav-client-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.dasabo-nav-client-btn img {
  display: block;
}

.dasabo-nav-client-btn b {
  font-weight: 600;
  color: inherit;
  font-size: 1rem;
}

.dasabo-nav-close {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.dasabo-nav-close span {
  position: absolute;
  width: 1.35rem;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.dasabo-nav-close span:first-child {
  transform: rotate(45deg);
}

.dasabo-nav-close span:last-child {
  transform: rotate(-45deg);
}

.dasabo-nav-close:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.dasabo-nav-close:hover span {
  background-color: rgba(255, 255, 255, 0.85);
}

.dasabo-nav-client-btn:focus-visible {
  outline: 2px solid rgba(11, 94, 215, 0.6);
  outline-offset: 3px;
}

.dasabo-nav-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .dasabo-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000333;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    overflow-y: auto;
  }

  .dasabo-nav.mobile-menu-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .dasabo-nav-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .dasabo-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .dasabo-nav-logo img {
    width: 7rem;
  }

  .dasabo-nav-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .dasabo-nav-client-btn {
    display: inline-flex;
  }

  .dasabo-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dasabo-nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 1.5rem;
  }

  .dasabo-nav-container > li {
    width: 100%;
  }

  .dasabo-nav-container > li > a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .dasabo-nav-container > li:last-child > a {
    border-bottom: none;
  }

  .dasabo-nav-item {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .dasabo-nav {
    display: block;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    background-color: white;
    padding: 1rem 0;
  }

  .dasabo-nav-wrapper {
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }

  .dasabo-nav-header,
  .dasabo-nav-logo,
  .dasabo-nav-header-actions,
  .dasabo-nav-client-btn,
  .dasabo-nav-close {
    display: none;
  }

  .dasabo-nav-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .dasabo-nav-container > li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .dasabo-nav-container > li::marker {
    content: none;
  }

  .dasabo-nav-container > li > a {
    color: inherit;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
  }

  .dasabo-nav-container > li > a .dasabo-nav-item {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: inherit;
    margin: 0;
  }

  .dasabo-nav-item {
    font-size: 1.125rem;
    font-weight: 500;
    color: inherit;
    margin: 0 2.5rem 0 0;
  }
}
/* Footer Styles */
.dasabo-footer {
  background-color: #000333;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: white;
}

.dasabo-footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .dasabo-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dasabo-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .dasabo-footer-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.dasabo-footer-brand {
  grid-column: span 2 / span 2;
}

.dasabo-footer-logo {
  width: fit-content;
}

.dasabo-footer-logo-img {
  position: relative;
  width: 10rem;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.dasabo-footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dasabo-footer-tagline {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .dasabo-footer-tagline {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.dasabo-footer-tagline b {
  font-weight: 600;
}

.dasabo-footer-description {
  margin-top: 0.5rem;
  color: #7a7ea1;
  line-height: 1.625;
  font-weight: 500;
}

.dasabo-footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dasabo-footer-title {
  color: #8d91ba;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.dasabo-footer-title b {
  font-weight: 600;
}

.dasabo-footer-link {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: white;
}

.dasabo-footer-bottom {
  display: flex;
  flex-direction: row;
}

@media (min-width: 1280px) {
  .dasabo-footer-bottom {
    flex-direction: column;
  }
}

.dasabo-footer-hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
  opacity: 0.1;
  border: 0;
  border-top: 1px solid white;
}

.dasabo-footer-bottom-content {
  min-width: fit-content;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1280px) {
  .dasabo-footer-bottom-content {
    flex-direction: row;
    align-items: flex-end;
  }
}

.dasabo-footer-copyright {
  min-width: fit-content;
  color: white;
}

.dasabo-footer-copyright p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
  font-weight: 500;
}

.dasabo-footer-copyright h2 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.dasabo-footer-copyright span {
  color: #8d91ba;
  font-weight: 500;
}

.dasabo-footer-copyright b {
  font-weight: 600;
}

.dasabo-footer-payments {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 1280px) {
  .dasabo-footer-payments {
    margin-top: 0;
    justify-content: flex-end;
  }
}

.dasabo-payment-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .dasabo-payment-icon {
    width: 2rem;
    height: 2rem;
  }
}

.dasabo-payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================================
   BLOG STYLES - Keliweb-inspired layout with Dasabo design
   =================================== */

.dasabo-blog-main {
  background: var(--background);
  padding: 1rem 0 3rem;
  min-height: 60vh;
}

@media (min-width: 992px) {
  .dasabo-blog-main {
    padding-top: 1rem;
  }
}

.dasabo-blog-header {
  margin-bottom: 2rem;
}

.dasabo-blog-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Featured Article (Large, Top) */
.dasabo-featured-article {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .dasabo-featured-article {
    grid-template-columns: 1.5fr 1fr;
  }
}

.dasabo-featured-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.dasabo-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dasabo-featured-image:hover img {
  transform: scale(1.05);
}

.dasabo-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dasabo-featured-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.dasabo-post-date {
  font-weight: 500;
  color: var(--primary);
}

.dasabo-post-category {
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
}

.dasabo-featured-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.dasabo-featured-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.dasabo-featured-title a:hover {
  color: var(--primary);
}

.dasabo-featured-excerpt {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.dasabo-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 1rem;
}

.dasabo-read-more:hover {
  opacity: 0.8;
}

/* Latest News Section */
.dasabo-latest-news {
  margin-top: 3rem;
}

.dasabo-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 2rem 0;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

/* News Grid (3 columns) */
.dasabo-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dasabo-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dasabo-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* News Card */
.dasabo-news-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.dasabo-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.dasabo-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
}

.dasabo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.dasabo-card-image:hover img {
  transform: scale(1.08);
}

.dasabo-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dasabo-card-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  flex-wrap: wrap;
}

.dasabo-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.dasabo-card-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.dasabo-card-title a:hover {
  color: var(--primary);
}

.dasabo-card-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-size: 0.9375rem;
}

.dasabo-card-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.dasabo-card-link:hover {
  opacity: 0.8;
}

/* Load More Button */
.dasabo-load-more-container {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.dasabo-load-more-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 4px rgba(11, 94, 215, 0.2);
}

.dasabo-load-more-btn:hover {
  background: #0951b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(11, 94, 215, 0.3);
}

.dasabo-load-more-btn:active {
  transform: translateY(0);
}

/* No Posts */
.dasabo-no-posts {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dasabo-no-posts h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.dasabo-no-posts p {
  color: #6b7280;
  font-size: 1.125rem;
}

/* Mobile Optimizations for Blog */
@media (max-width: 767px) {
  .dasabo-blog-main {
    padding: 1rem 0;
  }

  .dasabo-blog-title {
    font-size: 1.875rem;
  }

  .dasabo-featured-article {
    margin-bottom: 2rem;
  }

  .dasabo-featured-content {
    padding: 1.25rem;
  }

  .dasabo-featured-title {
    font-size: 1.5rem;
  }

  .dasabo-featured-excerpt {
    font-size: 0.9375rem;
  }

  .dasabo-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .dasabo-news-grid {
    gap: 1.5rem;
  }

  .dasabo-card-content {
    padding: 1.25rem;
  }

  .dasabo-card-title {
    font-size: 1.125rem;
  }

  .dasabo-load-more-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  .dasabo-featured-article {
    grid-template-columns: 1fr;
  }

  .dasabo-featured-image {
    height: 300px;
  }

  .dasabo-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   SINGLE POST STYLES - Dasabo Design
   =================================== */

.dasabo-single-main {
  background: var(--background);
  padding: 4rem 0 5rem;
  min-height: 60vh;
}

.dasabo-single-main .center {
  max-width: 80rem;
}

.dasabo-single-article {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3.5rem 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 30px 80px rgba(11, 50, 120, 0.12);
}

.dasabo-single-header {
  margin-bottom: 2.75rem;
}

.dasabo-single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.dasabo-category-badge {
  padding: 0.4rem 1rem;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dasabo-single-title {
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--primary-dark);
}

.dasabo-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  color: #4b5669;
  font-size: 0.95rem;
}

.dasabo-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.dasabo-meta-item svg {
  color: var(--primary);
}

.dasabo-single-article {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3.5rem 4rem;
  box-shadow: 0 30px 80px rgba(11, 50, 120, 0.12);
}

.dasabo-single-media {
  margin: 0 0 3rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.dasabo-single-media img {
  width: 100%;
  height: auto;
  display: block;
}

.dasabo-single-content {
  font-size: 1.075rem;
  line-height: 1.9;
  color: #242a38;
}

.dasabo-single-content > *:first-child {
  margin-top: 0;
}

.dasabo-single-content p {
  margin-bottom: 1.75rem;
}

.dasabo-single-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 3rem 0 1.25rem;
  font-family: 'Poppins', sans-serif;
}

.dasabo-single-content h3 {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 2.5rem 0 1rem;
  font-family: 'Poppins', sans-serif;
}

.dasabo-single-content h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 2rem 0 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.dasabo-single-content ul,
.dasabo-single-content ol {
  margin: 1.75rem 0;
  padding-left: 2.25rem;
}

.dasabo-single-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.dasabo-single-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.dasabo-single-content a:hover {
  opacity: 0.7;
}

.dasabo-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 2.5rem auto;
  display: block;
  box-shadow: 0 20px 45px rgba(10, 30, 80, 0.18);
}

.dasabo-single-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.75rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #4b5669;
  background: linear-gradient(90deg, rgba(167, 202, 255, 0.25), rgba(255, 255, 255, 0.2));
  border-radius: 0 1rem 1rem 0;
}

.dasabo-single-content code {
  background: #f3f6fd;
  padding: 0.3rem 0.55rem;
  border-radius: 0.35rem;
  font-size: 0.97rem;
  font-family: 'Courier New', monospace;
}

.dasabo-single-content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1.75rem;
  border-radius: 1rem;
  overflow-x: auto;
  margin: 2.5rem 0;
}

.dasabo-single-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.dasabo-single-tags {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e4e8f3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.dasabo-single-tags svg {
  color: var(--primary);
  flex-shrink: 0;
}

.dasabo-single-tags a {
  padding: 0.4rem 0.95rem;
  background: #eef3ff;
  color: #2f3950;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dasabo-single-tags a:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(11, 94, 215, 0.2);
}

.dasabo-post-navigation {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e4e8f3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.dasabo-nav-prev,
.dasabo-nav-next {
  min-width: 0;
}

.dasabo-nav-next {
  text-align: right;
}

.dasabo-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  padding: 1.5rem;
  background: #f5f8ff;
  border-radius: 1rem;
  transition: all 0.25s ease;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(11, 94, 215, 0.05);
}

.dasabo-nav-link:hover {
  background: #e6eeff;
  box-shadow: 0 18px 40px rgba(11, 94, 215, 0.18);
  transform: translateY(-3px);
}

.dasabo-nav-label {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dasabo-nav-title {
  font-size: 1.05rem;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.4;
}

.dasabo-comments-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e4e8f3;
}

.dasabo-comments-area {
}

.dasabo-comments-header {
  margin-bottom: 2.5rem;
}

.dasabo-comments-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.dasabo-comments-subtitle {
  font-size: 1rem;
}

.dasabo-comment-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.dasabo-comment {
  margin: 0;
}

.dasabo-comment .children {
  list-style: none;
  margin: 1.5rem 0 0 3.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dasabo-comment-card {
  display: flex;
  gap: 1.5rem;
  background: #f6f8ff;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  box-shadow: inset 0 0 0 1px rgba(11, 94, 215, 0.08);
}

.dasabo-comment-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(11, 94, 215, 0.18);
}

.dasabo-comment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dasabo-comment-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dasabo-comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.dasabo-comment-author .dasabo-comment-edit a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.dasabo-comment-author .dasabo-comment-edit a:hover {
  text-decoration: underline;
}

.dasabo-comment-date {
  font-size: 0.9rem;
  color: #6b7280;
}

.dasabo-comment-body {
  color: #374151;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dasabo-comment-body p {
  margin: 0;
}

.dasabo-comment-awaiting {
  background: #fffbeb;
  color: #b45309;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.dasabo-comment-actions {
  display: flex;
  justify-content: flex-end;
}

.dasabo-comment-reply a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.1);
  transition: all 0.2s ease;
}

.dasabo-comment-reply a:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 94, 215, 0.25);
}

.dasabo-comment-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.1);
  transition: all 0.2s ease;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.comment-navigation a:hover .dasabo-comment-nav {
  background: var(--primary);
  color: #ffffff;
}

.dasabo-comments-closed {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #f6f8ff;
  border-radius: 0.75rem;
  color: #4b5669;
  font-weight: 500;
}

.dasabo-comment-form {
  display: grid;
  gap: 1.5rem;
}

.dasabo-comment-form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.dasabo-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dasabo-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.dasabo-form-group input,
.dasabo-form-group textarea {
  border: 1px solid rgba(11, 94, 215, 0.2);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--primary-dark);
  background: #f9fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dasabo-form-group input:focus,
.dasabo-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.2);
  outline: none;
  background: #ffffff;
}

.dasabo-form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.dasabo-comment-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b5ed7, #063a8c);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dasabo-comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(11, 94, 215, 0.25);
}

.dasabo-comment-submit:active {
  transform: translateY(0);
}
.dasabo-related-posts-section {
  margin-top: 2rem;
}

.dasabo-related-posts {
  background: transparent;
}

.dasabo-related-title {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 2.5rem 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.dasabo-related-title::after {
  content: "";
  height: 4px;
  width: 60px;
  background: var(--primary);
  border-radius: 999px;
}

.dasabo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.dasabo-related-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 27, 70, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.dasabo-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 50, 120, 0.18);
}

.dasabo-related-image {
  display: block;
  height: 190px;
  overflow: hidden;
}

.dasabo-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dasabo-related-card:hover .dasabo-related-image img {
  transform: scale(1.08);
}

.dasabo-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dasabo-related-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.dasabo-related-card-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.dasabo-related-card-title a:hover {
  color: var(--primary);
}

.dasabo-related-date {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Mobile Optimizations for Single Post */
@media (max-width: 1023px) {
  .dasabo-single-main {
    padding: 3rem 0 4rem;
  }

  .dasabo-single-main .center {
    max-width: 92%;
  }

  .dasabo-single-article {
    padding: 2.5rem;
    border-radius: 1.25rem;
  }

  .dasabo-single-header {
    margin-bottom: 2.25rem;
  }

  .dasabo-single-meta {
    gap: 1.25rem;
  }

  .dasabo-single-media {
    margin: 0 0 2.5rem;
  }

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

  .dasabo-nav-next {
    text-align: left;
  }

  .dasabo-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dasabo-comments-area {
    padding: 2.5rem;
  }

  .dasabo-comment-card {
    flex-direction: column;
    gap: 1.25rem;
  }

  .dasabo-comment-avatar img {
    width: 56px;
    height: 56px;
  }

  .dasabo-comment .children {
    margin-left: 2rem;
  }
}

@media (max-width: 767px) {
  .dasabo-single-main {
    padding: 2.5rem 0 3.5rem;
  }

  .dasabo-single-article {
    padding: 2rem 1.75rem;
  }

  .dasabo-single-title {
    font-size: 2rem;
  }

  .dasabo-single-meta {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .dasabo-single-media {
    margin: 0 0 1.75rem;
  }

  .dasabo-single-content {
    font-size: 1rem;
  }

  .dasabo-single-content h2 {
    font-size: 1.75rem;
  }

  .dasabo-single-content h3 {
    font-size: 1.35rem;
  }

  .dasabo-related-grid {
    grid-template-columns: 1fr;
  }

  .dasabo-related-image {
    height: 180px;
  }

  .dasabo-comments-area {
    padding: 2rem;
  }

  .dasabo-comment-list {
    gap: 1.25rem;
  }

  .dasabo-comment-card {
    padding: 1.5rem;
  }

  .dasabo-comment .children {
    margin-left: 1.25rem;
  }

  .dasabo-comment-submit {
    width: 100%;
    justify-content: center;
  }
}

.dasabo-category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.dasabo-category-strip .dasabo-post-category {
  padding: 0.45rem 1.15rem;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dasabo-category-strip .dasabo-post-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(16, 24, 40, 0.12);
}

@media (max-width: 768px) {
  .dasabo-category-strip {
    column-gap: 0.65rem;
    row-gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .dasabo-category-strip .dasabo-post-category {
    flex: 1 1 calc(50% - 0.65rem);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dasabo-category-strip .dasabo-post-category {
    flex: 1 1 100%;
  }
}
