/* ===== RV Single Post Layout (v2) ===== */
:root{ --rv-container: 969px; }

.rv-single,
.rv-single *{ box-sizing: border-box; }

.rv-single{
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  color:#7A7A7A;
  font-size:13px;
  line-height:1.7;
}

/* Container */
.rv-container{
  max-width: var(--rv-container);
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid: content + sidebar */
.rv-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) 280px;
  gap: 32px;
  align-items:start;
}

/* Title + meta */
.rv-title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  margin: 24px 0 6px;
  color:#111827; /* keep heading darker for contrast */
}
.rv-meta{
  display:flex; flex-wrap:wrap; gap:14px;
  font-size: 12px; color:#9aa0a6;
  margin: 0 0 18px;
}
.rv-meta .dot::before{content:"•"; margin:0 6px 0 2px; color:#c7cbd1;}

/* Featured image smaller */
.rv-featured{
  max-width: 620px;
  border-radius: 8px;
  overflow:hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 32px rgba(0,0,0,.08);
  margin: 12px 0 22px;
}
.rv-featured img{display:block; width:100%; height:auto;}

/* Post content */
.rv-content{ }
.rv-content p{ margin: 0 0 1.05em; }
.rv-content img{ max-width:100%; height:auto; }
.rv-content h2{ font-size:22px; margin:1.2em 0 .5em; color:#111827; font-family: Georgia, "Times New Roman", serif; }
.rv-content h3{ font-size:18px; margin:1.1em 0 .5em; color:#111827; font-family: Georgia, "Times New Roman", serif; }

/* Sidebar widgets */
.rv-sidebar .widget{ margin: 0 0 26px; }
.rv-sidebar .widget-title{
  font-size:15px; font-weight:700; margin:0 0 12px; border-bottom:1px solid #eceff3; padding-bottom:8px;
  color:#111827; font-family: Georgia, "Times New Roman", serif;
}

/* Simple thumbnail grid helper */
.rv-thumbs{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:16px;
}
.rv-thumbs a{
  display:block; border-radius:10px; overflow:hidden; line-height:0;
  box-shadow:0 6px 22px rgba(0,0,0,.08);
}
.rv-thumbs img{ width:100%; height:auto; display:block; }

/* Divider */
.rv-divider{ height:1px; background:#eceff3; margin:24px 0; }

/* Mobile */
@media (max-width: 991.98px){
  .rv-grid{ grid-template-columns: 1fr; }
  .rv-featured{ max-width: 100%; }
}
