/* ============================================================
   SLV GLOBAL CONTAINER — RESTORE WIDTH CONTROL
============================================================ */
.slv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* ============================================================
   SLV BLOG — SIMPLE VERTICAL CARDS, SILVER, NO GREEN
============================================================ */

/* BLOG GRID — 3 → 2 → 1 */
.slv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
}

@media (max-width: 1024px) {
    .slv-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .slv-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD — vertical layout */
.slv-blog-card-horizontal {
    display: block;
    background: #f2f2f2;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.slv-blog-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.10);
}

/* IMAGE */
.slv-blog-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 8px;
}

/* BODY */
.slv-blog-card-body {
    display: block;
}

/* TITLE */
.slv-blog-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.slv-blog-card-title a {
    text-decoration: none;
    color: inherit;
}

/* EXCERPT */
.slv-blog-card-excerpt {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0 0 6px 0;
}

/* BUTTON */
.slv-blog-card-button {
    display: inline-block;
    padding: 6px 10px;
    background: #111;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    margin-top: 4px;
    width: auto;
}

@media (min-width: 1025px) {
    .slv-blog-card-horizontal {
        display: flex;
        flex-direction: column;
    }

    .slv-blog-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .slv-blog-card-button {
        margin-top: auto;
    }
}

/* ============================================================
   POST PAGE — CLEAN, MODERN, NON-STRETCHED IMAGE
============================================================ */

/* Main container for post */
.post-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Featured image wrapper */
.post-featured-image {
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 5px;              /* caption-style anchor */
  border-bottom: 1px solid #e5e5e5;  /* subtle divider */
}

/* Featured image itself */
.post-featured-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}


/* Pull title closer to image */
.post-container h1 {
  margin-top: 12px;
}

/* ============================================================
   MOBILE FIX — Prevent overflow and cropping
============================================================ */
@media (max-width: 768px) {
  .slv-container,
  .post-content-wrap {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden;
  }
}

/* ============================================================
   LUXURY RELATED ARTICLES — ELEGANT + DISTINCT + PREMIUM
============================================================ */

.related-wrapper {
    max-width: 800px;
    margin: 32px auto 0;      /* increased top margin */
    padding-top: 16px;        /* breathing room */
    border-top: 1px solid #dcdcdc;  /* subtle divider */
}


.post-index {
    margin-top: 20px;
    padding-left: 14px;                 /* space for accent line */
    border-left: 2px solid #c0c0c0;     /* silver accent line */
}

.post-index h3 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    padding-bottom: 4px;
    border-bottom: 1px solid #dcdcdc;   /* subtle divider */
    letter-spacing: 0.3px;
    text-transform: uppercase;      /* gives presence */
    font-family: inherit;           /* stays on brand */
}

.post-index ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-index ul li {
    margin: 0;
    padding: 4px 0;
    border-bottom: 1px solid #e8e8e8;   /* micro separators */
}

.post-index ul li:last-child {
    border-bottom: none;
}

.post-index ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    padding: 0;
}

.post-index ul li a:hover {
    color: #444;
}

.post-index .arrow {
    opacity: 0.5;
    font-size: 0.85em;
    margin-left: 8px;
    transition: opacity .15s ease, transform .15s ease;
}

.post-index ul li a:hover .arrow {
    opacity: 0.9;
    transform: translateX(2px);
}
