/*
Theme Name: BPR Krisna Yunadana
Version: 1.0
*/

html, body {
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  margin: 0 !important;
  padding: 0;
}

.main-content-container {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.main-content-container p {
  line-height: 1.6;
  font-size: 16px;
  color: #333;
  text-align: justify;
}

.wp-block-post-date {
  padding-bottom: 20px;
}

.wp-element-caption {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-content {
  padding-top: 80px;
}

.wp-block-image.size-large {
  width: 100%;
  max-width: 1200px;
  display: grid;
  align-items: center;
}

.blog-card {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
}

.blog-card-inner {
  display: flex;
  flex-direction: row; /* default: gambar kiri, konten kanan */
  gap: 1.5rem;
  align-items: flex-start;
}

.blog-card-thumb {
  flex: 0 0 40%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #eee;
}

.blog-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.blog-card-readmore {
  text-align: left; /* desktop: kiri bawah */
  margin-top: 1rem;
}

.btn-readmore {
  padding: 0.4rem 0.75rem;
  background-color: #A61D17;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-readmore:hover {
  background-color: #F4B855;
}

.blog-card-date {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* 📱 Mobile Layout: Gambar atas, konten bawah */
@media (max-width: 767px) {
  .blog-card-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .blog-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-card-readmore {
    text-align: right; /* pindah kanan bawah */
  }
}


