/*
Theme Name: OTACost Child
Template: otacost-theme-v2
Version: 1.0
*/
.oc-blog-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Section header */
.oc-section-header {
  margin-bottom: 40px;
}

.oc-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e63946;
  margin-bottom: 10px;
}

.oc-section-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #ffffff;
}

.oc-intro {
  font-size: 15px;
  color: #aaa;
  margin: 0;
  line-height: 1.6;
}

/* Posts list */
.oc-posts-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Card */
.oc-insight-card {
  display: block;
  text-decoration: none;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s;
}

.oc-insight-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.oc-insight-card:hover .oc-insight-title {
  color: #e63946;
}

/* Meta row */
.oc-insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Category tag */
.oc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e63946;
  background: rgba(230, 57, 70, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Date */
.oc-date {
  font-size: 12px;
  color: #666;
}

/* Title */
.oc-insight-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.15s;
}

/* Excerpt */
.oc-insight-excerpt {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* Pagination */
.oc-pagination {
  margin-top: 48px;
  text-align: center;
}

.oc-pagination .page-numbers {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 3px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
}

.oc-pagination .page-numbers.current,
.oc-pagination .page-numbers:hover {
  border-color: #e63946;
  color: #e63946;
}

/* Responsive */
@media (max-width: 600px) {
  .oc-blog-wrap {
    padding: 40px 16px 60px;
  }
  .oc-insight-title {
    font-size: 16px;
  }
}