/* Indien Reiseleiter — Blog pages only (home, single post, category/tag/date/author) */

/* —— Soft page header (list / archives) —— */
.blog-hero {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(228, 87, 46, 0.1), transparent 55%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 2.75rem;
}

.blog-hero .breadcrumb {
  margin-bottom: 1.25rem;
  opacity: 1;
}

.blog-hero .breadcrumb a {
  color: var(--muted);
}

.blog-hero .breadcrumb a:hover {
  color: var(--brand);
}

.blog-hero .breadcrumb li:not(:last-child)::after {
  color: var(--muted);
}

.blog-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  max-width: 20ch;
}

.blog-hero__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Listing —— */
.blog-listing {
  padding: 3.5rem 0 4.5rem;
  background: var(--paper);
}

.blog-grid {
  display: grid;
  gap: 1.35rem;
}

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

@media (min-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.blog-card:hover {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 55%, rgba(228, 87, 46, 0.35) 100%);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem 1.4rem;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.blog-card__meta time {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__more {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card__more::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.blog-card:hover .blog-card__more {
  color: var(--brand);
}

.blog-card:hover .blog-card__more::after {
  transform: translateX(3px);
}

.blog-empty {
  padding: 2rem 0;
  color: var(--muted);
}

/* —— Pagination —— */
.blog-pagination {
  margin-top: 2.75rem;
}

.blog-pagination .nav-links,
.blog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.blog-pagination a.page-numbers:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.blog-pagination .page-numbers.current {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.blog-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  min-width: auto;
}

/* —— Single post hero —— */
.blog-single-hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.blog-single-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.blog-single-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 22s var(--ease) infinite alternate;
}

.blog-single-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.25) 0%, rgba(20, 18, 16, 0.55) 45%, rgba(20, 18, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(196, 71, 31, 0.28), transparent 55%);
}

.blog-single-hero__content {
  padding: 4.5rem 0 3rem;
  animation: riseIn 0.9s var(--ease) both;
}

.blog-single-hero .breadcrumb {
  margin-bottom: 1.1rem;
}

.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 0.85rem;
}

.blog-single-hero__meta a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.blog-single-hero__meta a:hover {
  color: var(--white);
  text-decoration: underline;
}

.blog-single-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
}

/* Soft header when no featured image */
.blog-single-hero--plain {
  min-height: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(228, 87, 46, 0.1), transparent 55%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.blog-single-hero--plain .blog-single-hero__content {
  max-width: 48rem;
  padding: 2.5rem 0 2.75rem;
}

.blog-single-hero--plain .breadcrumb {
  opacity: 1;
}

.blog-single-hero--plain .breadcrumb a {
  color: var(--muted);
}

.blog-single-hero--plain .breadcrumb a:hover {
  color: var(--brand);
}

.blog-single-hero--plain .breadcrumb li:not(:last-child)::after {
  color: var(--muted);
}

.blog-single-hero--plain .blog-single-hero__meta {
  color: var(--muted);
  opacity: 1;
}

.blog-single-hero--plain .blog-single-hero__meta a {
  color: var(--brand-deep);
}

.blog-single-hero--plain .blog-single-hero__meta a:hover {
  color: var(--brand);
}

.blog-single-hero--plain h1 {
  color: var(--ink);
}

/* —— Article body —— */
.blog-article {
  padding: 3rem 0 4.5rem;
}

.blog-article__inner {
  max-width: 46rem;
  margin-inline: auto;
}

.blog-article__content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.blog-article__content > *:first-child {
  margin-top: 0;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.blog-article__content p {
  margin-bottom: 1.15em;
}

.blog-article__content a {
  color: var(--brand-deep);
}

.blog-article__content a:hover {
  color: var(--brand);
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.25em;
  padding-left: 1.35rem;
}

.blog-article__content li + li {
  margin-top: 0.35em;
}

.blog-article__content blockquote {
  margin: 1.75rem 0;
  padding: 1.15rem 1.35rem;
  border-left: 3px solid var(--brand);
  background: var(--paper-warm);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
}

.blog-article__content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-article__content figure {
  margin: 1.75rem 0;
}

.blog-article__content figcaption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-article__content img {
  border-radius: var(--radius);
}

.blog-article__content .wp-caption,
.blog-article__content .alignnone,
.blog-article__content .aligncenter,
.blog-article__content .alignwide,
.blog-article__content .alignfull {
  max-width: 100%;
}

.blog-article__content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.blog-article__content .alignleft {
  float: left;
  margin: 0.35rem 1.25rem 1rem 0;
}

.blog-article__content .alignright {
  float: right;
  margin: 0.35rem 0 1rem 1.25rem;
}

.blog-article__content::after {
  content: "";
  display: table;
  clear: both;
}

.blog-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.blog-article__tags a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-article__tags a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

/* —— Post navigation —— */
.blog-post-nav {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .blog-post-nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.blog-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none !important;
  color: inherit;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.blog-post-nav__link:hover {
  border-color: rgba(228, 87, 46, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-post-nav__link--next {
  text-align: right;
}

@media (min-width: 700px) {
  .blog-post-nav__link--next {
    justify-self: end;
    width: 100%;
  }
}

.blog-post-nav__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.blog-post-nav__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}

/* —— Related posts —— */
.blog-related {
  padding: 3.5rem 0 4.5rem;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}

.blog-related .section-title {
  margin-bottom: 1.75rem;
}

@media (max-width: 639px) {
  .blog-article__content .alignleft,
  .blog-article__content .alignright {
    float: none;
    margin: 1rem 0;
  }
}




/* Blog article + sidebar */
.blog-article {
    display: flex;
    flex-direction: column;
    @media (min-width: 768px) {
        gap: 50px;
        align-items: flex-start;
        flex-direction: row;
    }
}
.blog-article__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 60px;
	align-items: start;
}

/* Sidebar */
.blog-article__sidebar {
	width: 36%;
	position: sticky;
	top: 130px;
}

.best-sellers {
	padding: 28px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
}

.best-sellers .section-label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.best-sellers__title {
	margin: 0 0 24px;
	font-size: 28px;
	line-height: 1.2;
}

/* Product list */
.best-sellers__products {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Product card */
.best-seller-card {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9e9e9;
	text-decoration: none;
	color: inherit;
}

.best-seller-card:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

/* Product image */
.best-seller-card__image {
	width: 90px;
	height: 90px;
	overflow: hidden;
	border-radius: 8px;
	background: #f5f5f5;
}

.best-seller-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.best-seller-card:hover .best-seller-card__image img {
	transform: scale(1.05);
}

/* Product content */
.best-seller-card__content {
	min-width: 0;
}

.best-seller-card__name {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 600;
}

.best-seller-card__price {
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	display: none;
}

.best-seller-card__price del {
	opacity: 0.5;
	font-weight: 400;
	margin-right: 5px;
}

.best-seller-card__price ins {
	text-decoration: none;
}

.best-seller-card__link {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Hover */
.best-seller-card:hover .best-seller-card__name {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Tablet */
@media (max-width: 991px) {
	.blog-article__layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 35px;
	}

	.best-sellers {
		padding: 22px;
	}

	.best-sellers__title {
		font-size: 24px;
	}

	.best-seller-card {
		grid-template-columns: 70px minmax(0, 1fr);
		gap: 12px;
	}

	.best-seller-card__image {
		width: 70px;
		height: 70px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.blog-article__layout {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.blog-article__inner,
	.blog-article__sidebar {
		width: 100%;
	}

	.blog-article__sidebar {
		position: static;
		margin-top: 20px;
	}

	.best-sellers {
		padding: 24px;
	}

	.best-seller-card {
		grid-template-columns: 85px minmax(0, 1fr);
	}

	.best-seller-card__image {
		width: 85px;
		height: 85px;
	}
}