/* =========================
   Color Variables
========================= */

:root {
  --color-bg: #e7ede1;
  --color-font-secondary: #e7ede1;
  --color-orange: #d4885f;
  --color-darkgreen: #4e5745;
  --color-orange-light: #e2a07d;
}
/* Base font */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: var(--color-bg);
  margin: 0 auto;
  padding: 0;
}

/* Paragraphs */
p {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-darkgreen);
  font-size: 1.125rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.4;
}


/* =========================
   Layout Utilities
========================= */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.flex {
  display: flex;
}

/* Header background full width */
.site-header {
  width: 100%;
  background-color: var(--color-darkgreen);
  position: sticky;
  top: 0; 
  z-index: 1000;
}

.nav-wrapper {
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.site-branding {
  position: relative;
  z-index: 1001;
}

.site-branding a {
  display: inline-block;
  color: var(--color-orange);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.site-branding img {
  max-height: 60px;
  width: auto;
  display: block;
}
.main-navigation {
  margin-left: auto;
}

.main-navigation ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
}

.main-navigation a {
  position: relative;
  display: inline-block;
  color: var(--color-orange);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  transition: color 0.3s ease;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--color-orange-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-navigation a:hover {
  color: var(--color-orange-light);
}

.main-navigation a:hover::after {
  transform: scaleX(1);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--color-orange-light);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  transform: scaleX(1);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--color-orange);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile */
@media (max-width: 970px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-darkgreen);
    margin-left: 0;
    padding: 0 24px 24px;
    display: none;
  }

  .main-navigation.active {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    padding-top: 12px;
  }

  .main-navigation li {
    width: 100%;
  }

  .main-navigation a {
    display: inline-block;
    padding: 6px 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.site-footer {
  width: 100%;
  background-color: var(--color-darkgreen);
  color: var(--color-font-secondary);
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-column h3 {
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--color-orange);
}

/* Left: footer menu */
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li {
  margin: 0 0 12px;
  padding: 0;
}
.footer-menu-cookie-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu-list a, .footer-menu-cookie {
  color: var(--color-font-secondary);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.footer-menu-list a:hover, .footer-menu-cookie:hover {
  color: var(--color-orange);
  text-decoration: underline;
}

/* Middle: social */
.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Hover effect */
.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
.social-icons a:hover svg {
  filter: drop-shadow(0 2px 4px rgba(212, 136, 95, 0.4));
}

/* Right: contact */
.footer-contact {
  text-align: right;
}
.footer__item {
  padding-bottom: 1rem;
}
.footer__item a {
  color: var(--color-font-secondary);
  text-decoration: none;
  font-size: 1.125rem;
  transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}

.footer__item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-details p {
  margin: 0 0 12px;
  font-family: 'Open Sans', sans-serif;
  color: var(--color-font-secondary);
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(231, 237, 225, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-font-secondary);
}

.footer-bottom__madeby {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom__madeby a img {
  height: 2rem;
  width:auto;  
  display: inline-block;
  padding-left: 0.5rem;
}

/* Responsive */
@media (max-width: 970px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-social,
  .footer-contact {
    text-align: left;
  }
  .social-icons {
    justify-content: flex-start;
  }
}
/* =========================
   Services (Template Part)
========================= */

.tp-services {
  padding: 80px 0;
}

.tp-services__grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.tp-services h2 {
  margin: 0 0 40px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
}

/* Card */
.tp-card {
  background: #ffffff;
  flex: 1 1 calc(33.333% - 22px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.tp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image */
.tp-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.tp-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tp-card__date {
  font-size: 0.85rem;
  color: var(--color-orange);
}

.tp-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--color-darkgreen);
  margin: 0;
}

.tp-card__desc {
  font-family: 'Open Sans', sans-serif;
  color: #444;
  font-size: 0.95rem;
}
/* Tablet */
@media (max-width: 970px) {
  .tp-card {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .tp-services__grid {
    gap: 24px;
  }

  .tp-card {
    flex: 0 0 100%;
  }
}

/* =========================
   Events
========================= */
.tp-events {
  padding: 80px 0;
}
.tp-events h2 {
  margin: 0 0 40px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
}

.tp-events__viewport {
  overflow: hidden;
  width: 100%;
}

.tp-events__track {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%;
}

.tp-events__slide {
  min-width: 100%;
  display: flex;
  gap: 24px;
}

.tp-event-card {
  flex: 1 1 calc(25% - 18px);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tp-event-card__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.tp-event-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.tp-event-card__date {
  font-size: 0.85rem;
  color: var(--color-orange);
}

.tp-event-card__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--color-darkgreen);
}

.tp-event-card__place {
  font-size: 0.95rem;
  color: var(--color-darkgreen);
  font-weight: 600;
}

.tp-event-card__desc {
  font-size: 0.95rem;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
}

.tp-events__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.tp-events__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(78, 87, 69, 0.25);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.tp-events__dot.is-active {
  background-color: var(--color-orange);
  transform: scale(1.1);
}

.tp-events__dot:hover {
  background-color: var(--color-darkgreen);
}

@media (max-width: 970px) {
  .tp-events__slide {
    flex-wrap: wrap;
  }

  .tp-event-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .tp-event-card {
    flex: 1 1 100%;
  }
}
/* =========================
   Hero
========================= */

.tp-hero {
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.tp-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px; /* adjust fade height */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(96, 95, 80, 0.9) 100%
  );
  z-index: 2;
}

.tp-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.tp-hero__inner {
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.tp-hero__title {
  margin: 0;
  max-width: 700px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.1;
  padding-bottom: 2rem;
}

@media (max-width: 970px) {
  .tp-hero,
  .tp-hero__inner {
    min-height: 300px;
  }

  .tp-hero__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .tp-hero,
  .tp-hero__inner {
    min-height: 240px;
  }

  .tp-hero__title {
    font-size: 1.8rem;
  }
}
/* =========================
   Contact page
========================= */

.tp-contact {
  padding: 80px 0 60px;
}

.tp-contact__inner {
  max-width: 80%;
  margin: 0 auto;
}

.tp-contact__title {
  margin: 0 0 3rem 0;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.1;
  text-align: center;
}

.tp-contact__text {
  margin: 0 0 3rem 0;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: center;
}

.tp-contact__details {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.tp-contact__item {
  
  display: flex;
  align-items: center;
  gap: 14px;
}

.tp-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-darkgreen);
  flex-shrink: 0;
}

.tp-contact__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.tp-contact__item a {
  color: var(--color-darkgreen);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.7rem;
  transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}

.tp-contact__item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 970px) {
  .tp-contact {
    padding: 60px 0 40px;
  }

  .tp-contact__title {
    font-size: 2.2rem;
  }
  .tp-contact__details {
    flex-direction: column;
  }
}

/* home rolam banner */
.tp-home-me-block {
  padding: 80px 0;
}

.tp-home-me-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.tp-home-me-block__content {
  flex: 0 0 48%;
  max-width: 48%;
}

.tp-home-me-block__title {
  margin: 0 0 20px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

.tp-home-me-block__text {
  margin-bottom: 28px;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
}

.tp-home-me-block__image img {
  width: 100%;
  max-height: 430px;
  height: 100%;
  object-fit: cover;
  display: block;

  border: 24px solid var(--color-orange-light);
}

@media (max-width: 970px) {
  .tp-home-me-block__inner {
    flex-direction: column;
  }

  .tp-home-me-block__content,
  .tp-home-me-block__image {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/* =========================
   Bemutatkozás page
========================= */

.page-bemutatkozas {
  padding: 80px 0;
  background-color: #ffffff; 
}

.page-bemutatkozas__content {
  max-width: 100%; 
}

/* Headings */
.page-bemutatkozas__content h2
 {
  font-size: 1.2rem;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin: 0 0 16px;
}

.page-bemutatkozas__content h3 {
  font-size: 1.125rem;
  color: var(--color-darkgreen);
  margin: 0 0 12px;
}

/* Paragraphs */
.page-bemutatkozas__content p {
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  margin: 0 0 20px;
}
/* =========================
   Home Description Block
========================= */

.tp-home-desc {
  background-color: var(--color-darkgreen);
  padding: 80px 0;
}

.tp-home-desc__inner {
  display: flex;
  justify-content: space-between;
  align-items:center;
  gap: 48px;
}

/* Left */
.tp-home-desc__left {
  display: flex;
  align-items: center;
}

.tp-home-desc__title {
  margin: 0;
  color: var(--color-bg);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.2;
}

/* Right */
.tp-home-desc__right {
  flex: 0 0 60%;
}

.tp-home-desc__text > p{
  color: var(--color-font-secondary);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tp-home-desc__btn:hover {
  background-color: var(--color-darkgreen);
}

/* Responsive */
@media (max-width: 970px) {
  .tp-home-desc__inner {
    flex-direction: column;
  }

  .tp-home-desc__left,
  .tp-home-desc__right {
    flex: 0 0 100%;
  }

  .tp-home-desc__title {
    font-size: 1.8rem;
  }
}
/* =========================
   Content Block
========================= */

.tp-content-block {
  padding: 80px 0;
}

.tp-content-block__inner {
  max-width: 100%;
}

.tp-content-block__title {
  margin: 0 0 20px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
}

.tp-content-block__text {
  margin-bottom: 24px;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
}

/* =========================
   page arak 
========================= */
.page-arak {
  padding: 80px 0;
}
.page-arak h2 strong {
  font-size: 2.5rem;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin: 0 0 16px;
}
.page-arak figure {
  text-align: center;
  width: 80%;
  margin: 1rem auto;
  padding-top: 3rem;
}
.page-arak figure table {
  border-collapse: collapse;
  margin-bottom: 24px;
}
.page-arak figure table tbody :nth-child(1) td {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-font-secondary);
  background-color: var(--color-darkgreen);
  height: 4.5rem;
} 
/* =========================
   Page miben segithetek 
========================= */
.page-miben-segithetek__content {
  padding: 80px 0 0 0;
}
.page-miben-segithetek__content h2 strong {
  font-size: 2.5rem;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin: 0 0 1rem;
}
/* =========================
   Page mentalhigiene
========================= */
.page-mentalhigiene__content {
  padding: 80px 0 0 0;
}
.page-mentalhigiene__content h2 strong {
  font-size: 2.5rem;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin: 0 0 1rem;
}

/* =========================
   Buttons
========================= */
.btn, .btn--secondary{
  display: inline-block;
  padding: 12px 22px;
  background-color: var(--color-orange);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-darkgreen);
}
.btn--secondary:hover {
  background-color: var(--color-bg);
  color: var(--color-darkgreen);
}

/* =========================
   Page csoportos foglalkozasok
========================= */
.page-csoportos {
  padding: 80px 0 0 0;
}
.page-csoportos__content h2 {
  font-size: 2.5rem;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  margin-bottom: 16px;
}
/* =========================
   Blog list
========================= */
.page-blog__title {
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}
.blog-list {
  padding: 0 0 80px;
  background-color: #ffffff;
}

.blog-list__item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(78, 87, 69, 0.15);
  max-width: 100%;
}

.blog-list__item:last-child {
  border-bottom: none;
}

/* Title */
.blog-list__title {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.blog-list__title a {
  color: var(--color-darkgreen);
  text-decoration: none;
}

.blog-list__title a:hover {
  text-decoration: underline;
}

/* Excerpt */
.blog-list__excerpt {
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-pagination {
  margin-top: 40px;
}
.blog-pagination nav div a {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-orange);
  color: var(--color-font-secondary);
  text-decoration: none;
  margin-right: 8px;
  transition: background-color 0.3s ease;
}

 /* =========================
   Single blog page
========================= */

.single-blog__section {
  background-color: #ffffff;
  padding: 80px 0;
}

.single-blog__article {
  max-width: 100%;
}

.single-blog__header {
  margin-bottom: 32px;
}

.single-blog__title {
  margin: 0 0 12px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1.15;
}

.single-blog__meta {
  color: var(--color-orange);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.single-blog__image {
  margin-bottom: 32px;
}

.single-blog__image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.single-blog__content {
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
}

.single-blog__content p {
  margin: 0 0 20px;
  line-height: 1.85;
}

.single-blog__content h2 {
  margin: 40px 0 16px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1.2;
}

.single-blog__content h3 {
  margin: 32px 0 14px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.single-blog__content h4 {
  margin: 24px 0 12px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.single-blog__content ul,
.single-blog__content ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.single-blog__content li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.single-blog__content a {
  color: var(--color-orange);
  text-decoration: none;
}

.single-blog__content a:hover {
  text-decoration: underline;
}

.single-blog__content blockquote {
  margin: 32px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--color-orange);
  font-style: italic;
}

.single-blog__content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 32px 0;
}

.single-blog__content .wp-block-image {
  margin: 32px 0;
}

.single-blog__content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
}

.single-blog__content .wp-block-quote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--color-orange);
}

.single-blog__content .wp-block-table {
  margin: 32px 0;
  overflow-x: auto;
}

.single-blog__content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.single-blog__content .wp-block-table th,
.single-blog__content .wp-block-table td {
  border: 1px solid rgba(78, 87, 69, 0.18);
  padding: 14px 16px;
  text-align: left;
}

.single-blog__content .wp-block-table th {
  background-color: var(--color-bg);
  font-family: 'Playfair Display', serif;
}
.single-blog__back {
  margin-top: 40px;
}

.single-blog__back a {
  color: var(--color-orange);
  text-decoration: none;
}

.single-blog__back a:hover {
  text-decoration: underline;
}

@media (max-width: 970px) {
  .single-blog__section {
    padding: 60px 0;
  }

  .single-blog__title {
    font-size: 2rem;
  }

  .single-blog__content h2 {
    font-size: 1.5rem;
  }

  .single-blog__content h3 {
    font-size: 1.25rem;
  }
}

/* =========================
   Two column pattern
========================= */

.vp-two-col__inner {
  gap: 1rem;
  margin: 0;
}

/* Left column (title) */
.vp-two-col__left h2 strong {
  margin: 0;
  font-size: 2.5rem;
  color: var(--color-darkgreen);
  /* font-family: 'Playfair Display', serif; */
  line-height: 1.2;
}

/* Right column (text) */
.vp-two-col__right p {
  margin: 0;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 970px) {
  .vp-two-col__inner {
    flex-direction: column;
  }

  .vp-two-col__left,
  .vp-two-col__right {
    flex-basis: 100% !important;
  }
}

/* =========================
   Testimonials
========================= */

.tp-testimonials {
  padding: 80px 0;
  background-color: transparent;
}

.tp-testimonials__slider {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.tp-testimonials__viewport {
  flex: 1;
  overflow: hidden;
}

.tp-testimonials__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.tp-testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
}

.tp-testimonial-card__inner {
  background-color: #ffffff;
  padding: 48px 56px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tp-testimonial-card__text {
  position: relative;
  padding-left: 32px;
}

.tp-testimonial-card__text::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-orange);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.tp-testimonial-card__text p {
  margin: 0;
  color: var(--color-darkgreen);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
}

.tp-testimonial-card__meta {
  margin-top: 32px;
}

.tp-testimonial-card__author {
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.tp-testimonial-card__company {
  margin-top: 6px;
  color: var(--color-orange);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.tp-testimonials__arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: none;
  background-color: #ffffff;
  color: var(--color-darkgreen);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tp-testimonials__arrow span {
  font-size: 1.4rem;
  line-height: 1;
}

.tp-testimonials__arrow:hover {
  background-color: var(--color-darkgreen);
  color: #ffffff;
}

.tp-testimonials__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.tp-testimonials__arrow:disabled:hover {
  background-color: #ffffff;
  color: var(--color-darkgreen);
  transform: none;
}
/* Title */
.tp-testimonials__title {
  text-align: center;
  margin: 0 0 48px;
  color: var(--color-darkgreen);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
}
.tp-testimonials__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-orange);
  margin: 16px auto 0;
}

@media (max-width: 970px) {
  .tp-testimonial-card__inner {
    padding: 36px 28px;
    min-height: 240px;
  }

  .tp-testimonials__slider {
    gap: 16px;
    width: 100%;
  }

  .tp-testimonials__arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
    .tp-testimonials__title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .tp-testimonials__slider {
    align-items: stretch;
  }

  .tp-testimonial-card__inner {
    padding: 28px 20px;
  }

  .tp-testimonial-card__text p {
    font-size: 1rem;
  }
}