/* ──────────────────────────────────────────
       BLOG MAIN/INDEX PAGE STYLES
    ────────────────────────────────────────── */
.blog {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

.blog .blog-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== BLOG POST ========== */
.blog-post {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eeeeee;
}

.blog-post:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.blog-post .blog-column-image {
    flex: 1;
    min-width: 0;
}

.blog-post .blog-column-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.blog-post .blog-thumbnail,
.blog-post .attachment-post-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post .blog-thumbnail:hover,
.blog-post .attachment-post-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.blog-post h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-post h2 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h2 a:hover {
    color: #e37e4a;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-meta .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta .blog-meta-label {
    color: #999999;
}

.blog-meta .blog-meta-value {
    color: #797979;
}

.blog-meta a {
    color: #e37e4a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.blog-meta a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.blog-excerpt p {
    color: #797979;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #e37e4a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid #e37e4a;
}

.blog-read-more-btn:hover {
    background-color: transparent;
    color: #e37e4a;
}

/* ========== PAGINATION ========== */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blog-pagination .blog-page-link {
    color: #797979;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.blog-pagination .blog-page-link:hover {
    background-color: #e37e4a;
    color: #ffffff;
    border-color: #e37e4a;
}

.blog-pagination .blog-page-link.active {
    background-color: #e37e4a;
    color: #ffffff;
    border-color: #e37e4a;
    font-weight: 600;
}

.blog-pagination .blog-prev-next {
    color: #797979;
    background-color: transparent;
    border: 1px solid #e0e0e0;
}

.blog-pagination .blog-prev-next:hover {
    background-color: #e37e4a;
    color: #ffffff;
    border-color: #e37e4a;
}

.blog-pagination .blog-prev-next.disabled {
    color: #cccccc;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination .blog-dots {
    color: #999999;
    cursor: default;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .blog {
        padding: 40px 0;
    }

    .blog-post {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .blog-post .blog-column-image,
    .blog-post .blog-column-content {
        flex: none;
        width: 100%;
    }

    .blog-post h2 {
        font-size: 20px;
    }

    .blog-meta {
        gap: 15px;
    }

    .blog-pagination {
        gap: 5px;
    }

    .blog-pagination a,
    .blog-pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-post h2 {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blog-read-more-btn {
        width: 100%;
        text-align: center;
    }
}

/* ──────────────────────────────────────────
      SINGLE/POST BLOG PAGE STYLES 
    ────────────────────────────────────────── */
.single a { color: #e37e4a; text-decoration: none; transition: color 0.2s; }
.single-header {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../img/panel-header.jpg");
  background-size: cover;
  background-position: center;
}

.single-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,10,5,0.55) 0%, rgba(40,20,10,0.25) 100%);
  z-index: 1;
}

.single-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.single-header .single-container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }

/* Breadcrumbs */
.single-header-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.single-header-breadcrumbs a { color: rgba(255,255,255,0.75); }
.single-header-breadcrumbs a:hover { color: #e2a062; }
.single-header-breadcrumbs .single-header-sep { opacity: 0.4; }

.single-header__title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
  text-align: left;
  line-height: 1.3;
  max-width: 760px;
  margin-bottom: 18px;
}

.single-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.single-header__meta a { color: rgba(255,255,255,0.85); }
.single-header__meta a:hover { color: #e2a062; }
.single-header__meta .single-header-divider { opacity: 0.4; }

/* ─── CONTENT SECTION ─── */
.single-content-section {
  background: #ffffff;
  padding: 56px 0 72px;
}

.single-content-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ─── MAIN COLUMN ─── */

/* .single-main-col {
  flex: 0 0 calc(75% - 20px);
  max-width: calc(75% - 20px);
}

.single-post-text {
  color: #797979;
  font-size: 15.5px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.single-post-text a { color: #e37e4a; }
.single-post-text a:hover { color: #ff7f45; }

.single-post-h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: #ff7f45;
  font-weight: 700;
  text-align: left;
  margin: 36px 0 18px;
  line-height: 1.3;
}

.single-post-image-wrap {
  margin: 24px 0 8px;
}

.single-post-image-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.single-image-caption {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  margin-top: 8px;
  text-align: center;
} */

/* NEW STYLING */

.single-main-col {
  flex: 0 0 calc(75% - 20px);
  max-width: calc(75% - 20px);
}

.single-main-col h1,
.single-main-col h2,
.single-main-col h3,
.single-main-col h4 {
    color: #ff7f45;
}

/* Target all <p> tags inside .single-main-col */
.single-main-col p {
  color: #797979;
  font-size: 15.5px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Style for links inside paragraphs */
.single-main-col p a {
  color: #e37e4a;
}
.single-main-col p a:hover {
  color: #ff7f45;
}

/* Target all <h2> tags inside .single-main-col */
.single-main-col h2 {
  font-size: clamp(18px, 2.5vw, 26px);

  font-weight: 700;
  text-align: left;
  margin: 36px 0 18px;
  line-height: 1.3;
}

/* Style for images inside .single-main-col */
.single-main-col img,
.wp-caption img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 24px 0 8px;
}

/* Style for the caption (still uses the class) */
.single-image-caption,
.wp-element-caption {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}
        

/* List */
.single-post-list {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
}

.single-post-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-bottom: 1px solid #e8e8e8;
  color: #797979;
  font-size: 15px;
}

.single-post-list li:first-child { border-top: 1px solid #e8e8e8; }

.single-post-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #e37e4a;
  border-radius: 50%;
}

.single-post-list li strong { color: #242424; }

/* Table */

/*.single-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.single-table-wrap th,
.single-table-wrap td {
    padding: 8px 12px;
    text-align: left;
    border: 1px solid #ddd;
}
.single-table-wrap th {
    background-color: #f5f5f5;
    font-weight: bold;
}
.single-table-wrap {
    margin: 1em 0;
}*/


/* Tags & Categories */
.single-post-meta-bottom {
  margin: 36px 0 28px;
  padding: 18px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.single-meta-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-right: 2px;
}

.single-post-cats,
.single-post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.single-cat-link,
.single-post-cats a {
  font-size: 13px;
  color: #e37e4a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.single-tag-link,
.single-post-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: #fff5f0;
    color: #e37e4a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-tag-link:hover,
.single-post-tags a:hover {
    background: #e37e4a;
    color: #ffffff;
}

/* Share */
.single-share-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.single-share-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.single-share-icons {
    display: flex;
    gap: 8px;
}

.single-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #797979;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-share-btn:hover {
    background: #e37e4a;
    border-color: #e37e4a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 126, 74, 0.3);
}


/* Similar Posts */
.single-similar-posts { margin-bottom: 48px; }

.single-section-heading {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.single-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.single-similar-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #ffffff;
}

.single-similar-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.single-similar-card__img { width: 100%; height: 130px; object-fit: cover; }

.single-similar-card__body { padding: 14px 16px; }

.single-similar-card__date {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.single-similar-card__title {
  font-size: 14px;
  color: #242424;
  line-height: 1.45;
  font-weight: 600;
  transition: color 0.2s;
}

.single-similar-card:hover .similar-card__title { color: #e37e4a; }

/* CTA inline */
.single-cta-inline {
  background: linear-gradient(135deg, #ff7f45 0%, #e37e4a 100%);
  border-radius: 6px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.single-cta-inline__text {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.single-cta-btn {
  display: inline-block;
  padding: 13px 15px;
  background: #ffffff;
  color: #ff7f45;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.single-cta-btn:hover {
  background: #242424;
  color: #ffffff;
}

/* ─── SIDEBAR ─── */
.single-sidebar-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.single-widget {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 22px 20px;
  margin-bottom: 24px;
}

.single-widget__title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #242424;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e37e4a;
}

/* Search widget */
.single-search-form form {
  display: flex;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}

.single-search-input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  color: #242424;
  background: #ffffff;
  outline: none;
  font-family: inherit;
}

.single-search-input::placeholder { color: #ccc; }

.single-search-btn {
  background: #e37e4a;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-search-btn:hover { background: #ff7f45; }
.single-search-btn svg { fill: #ffffff; width: 16px; height: 16px; }

/* Categories */
.single-cat-list { list-style: none; }

.single-cat-list li {
  border-bottom: 1px solid #e8e8e8;
}

.single-cat-list li:last-child { border-bottom: none; }

.single-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 4px;
  color: #797979;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}

.single-cat-list a:hover { color: #e37e4a; padding-left: 8px; }

.single-cat-list .single-count {
  font-size: 12px;
  background: #e8e8e8;
  border-radius: 10px;
  padding: 1px 8px;
  color: #aaa;
}

.single-cat-list li a + span {
    display: inline-block;
    margin-left: 8px;
    color: #777;
    font-size: 0.8em;
}

/* Latest posts */
.single-latest-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}

.single-latest-post:last-child { border-bottom: none; padding-bottom: 0; }
.single-latest-post:first-child { padding-top: 0; }

.single-latest-post__img {
  width: 58px;
  height: 52px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.single-latest-post__info { flex: 1; min-width: 0; }

.single-latest-post__title,
a.single-latest-post__title {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: #242424;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.2s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.single-latest-post__title:hover,
a.single-latest-post__title:hover { color: #e2a062; }

.single-latest-post__date {
  font-size: 11px;
  color: #9a9a9a;
}

/* CTA widget */
.single-cta-widget {
  background: linear-gradient(160deg, #ff7f45 0%, #c9521e 100%);
  border: none;
  text-align: center;
  padding: 28px 20px;
}

.single-cta-widget .single-widget__title {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.single-cta-widget p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.6;
}

.single-cta-widget .single-cta-btn {
  width: 100%;
  text-align: center;
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .single-content-row { flex-direction: column; }

  .single-main-col,
  .single-sidebar-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .single-header { min-height: 280px; }
  .single-cta-inline { flex-direction: column; text-align: center; }
  .single-share-block { flex-wrap: wrap; }
}
