/*
Theme Name: Minoo Child
Template: astra
Version: 1.0
*/

/* Hero */
/* Single Post */

.mino-single {
  background: #111;
}

.post-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin: 15px 0;
}

.post-meta {
  font-size: 14px;
  opacity: .8;
}

/* Body Box */

.post-body {
  max-width: 900px;
  margin: -80px auto 60px;
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

/* Archive */

.archive-container {
  max-width: 1100px;
  margin: 60px auto;
}

.post-card {
  background: #fff;
  display: flex;
  gap: 25px;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.card-text {
  flex: 1;
}

.card-text h2 {
  margin: 10px 0;
}

.card-meta {
  font-size: 13px;
  opacity: .6;
}

.card-image img {
  width: 180px;
  border-radius: 12px;
}

.more {
  display: inline-block;
  margin-top: 10px;
  background: #eee;
  padding: 6px 14px;
  border-radius: 20px;
}

