.tp-home-blog {
  position: relative;
  padding: 68px 0 74px;
  background: var(--tp-grey-3);
  overflow: hidden;
}

.tp-home-blog-flight-route {
  display: none;
}

.tp-home-blog-watermark {
  position: absolute;
  top: 34px;
  left: 50%;
  color: rgba(7, 21, 22, 0.026);
  font-family: var(--tp-ff-heading);
  font-size: clamp(76px, 15vw, 210px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.tp-home-blog-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 31px;
}

.tp-home-blog-heading .tp-section-title {
  margin: 0;
}

.tp-home-blog-title-accent {
  color: var(--tp-theme-1);
}

.tp-home-blog-title-underline {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 12px;
  color: var(--tp-theme-1);
}

.tp-home-blog-all-btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tp-home-blog-view-all {
  margin-top: 28px;
}

.tp-home-blog-all-btn i,
.tp-home-blog-featured-cta i,
.tp-home-blog-stack-arrow i {
  transition: transform 0.28s ease;
}

.tp-home-blog-all-btn:hover i,
.tp-home-blog-featured:hover .tp-home-blog-featured-cta i,
.tp-home-blog-stack-card:hover .tp-home-blog-stack-arrow i {
  transform: translateX(4px);
}

.tp-home-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.tp-home-blog-featured {
  position: relative;
  display: block;
  min-height: 365px;
  border-radius: 18px;
  background: var(--tp-common-black);
  box-shadow: 0 14px 36px rgba(7, 21, 22, 0.15);
  overflow: hidden;
  isolation: isolate;
}

.tp-home-blog-featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.tp-home-blog-featured-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 22, 0.08) 16%, rgba(7, 21, 22, 0.94) 100%);
}

.tp-home-blog-featured-badges {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tp-home-blog-featured-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--tp-common-white);
  background: rgba(7, 21, 22, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--tp-ff-body);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.tp-home-blog-featured-badges > span:first-child {
  border-color: var(--tp-theme-1);
  background: var(--tp-theme-1);
}

.tp-home-blog-featured-content {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 20px;
  left: 19px;
  display: block;
  color: var(--tp-common-white);
}

.tp-home-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--tp-grey-1);
  font-family: var(--tp-ff-body);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.35;
}

.tp-home-blog-meta.is-light {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.tp-home-blog-meta i {
  margin-right: 4px;
  color: var(--tp-theme-1);
}

.tp-home-blog-author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--tp-common-white);
}

.tp-home-blog-author img {
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.tp-home-blog-meta.is-light .tp-home-blog-author,
.tp-home-blog-meta.is-light > span:last-child {
  display: none;
}

.tp-home-blog-featured-content > strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-heading);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tp-home-blog-featured-description {
  display: none;
}

.tp-home-blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 17px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--tp-common-white);
  font-family: var(--tp-ff-body);
  font-size: 11px;
  font-weight: 600;
}

.tp-home-blog-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tp-home-blog-stack-card {
  display: flex;
  min-height: 120px;
  align-items: stretch;
  gap: 13px;
  padding: 10px;
  border: 1px solid var(--tp-border-1);
  border-radius: 16px;
  color: inherit;
  background: var(--tp-common-white);
  box-shadow: 0 8px 24px rgba(7, 21, 22, 0.055);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.tp-home-blog-stack-card:nth-child(n + 3) {
  display: none;
}

.tp-home-blog-stack-image {
  display: block;
  width: 96px;
  min-width: 96px;
  border-radius: 11px;
  overflow: hidden;
}

.tp-home-blog-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.tp-home-blog-stack-content {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 2px 2px 2px 0;
}

.tp-home-blog-category {
  align-self: flex-start;
  margin-bottom: 7px;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--tp-theme-1);
  background: rgba(253, 70, 33, 0.1);
  font-family: var(--tp-ff-body);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.tp-home-blog-category.is-adventure {
  color: #21875a;
  background: rgba(33, 135, 90, 0.1);
}

.tp-home-blog-category.is-city {
  color: #3468b8;
  background: rgba(52, 104, 184, 0.1);
}

.tp-home-blog-stack-content > strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.25s ease;
}

.tp-home-blog-stack-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  margin-top: auto;
  padding-top: 8px;
}

.tp-home-blog-stack-footer .tp-home-blog-meta > span:nth-child(2) {
  display: none;
}

.tp-home-blog-stack-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--tp-theme-1);
  background: rgba(253, 70, 33, 0.1);
  font-size: 9px;
}

.tp-home-blog-featured:hover > img,
.tp-home-blog-stack-card:hover .tp-home-blog-stack-image img {
  transform: scale(1.07);
}

.tp-home-blog-stack-card:hover {
  border-color: rgba(253, 70, 33, 0.25);
  box-shadow: 0 16px 35px rgba(7, 21, 22, 0.11);
  transform: translateY(-4px);
}

.tp-home-blog-stack-card:hover .tp-home-blog-stack-content > strong {
  color: var(--tp-theme-1);
}

.tp-home-blog-featured:focus-visible,
.tp-home-blog-stack-card:focus-visible,
.tp-home-blog-all-btn:focus-visible {
  outline: 3px solid rgba(253, 70, 33, 0.28);
  outline-offset: 3px;
}

@media (min-width: 576px) {
  .tp-home-blog-all-btn {
    width: auto;
    align-self: center;
  }

  .tp-home-blog-featured-content {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .tp-home-blog-featured-content > strong {
    max-width: 590px;
    font-size: 39px;
  }

  .tp-home-blog-stack-card {
    min-height: 148px;
    gap: 18px;
    padding: 12px;
  }

  .tp-home-blog-stack-image {
    width: 160px;
    min-width: 160px;
  }

  .tp-home-blog-stack-content > strong {
    font-size: 21px;
  }

  .tp-home-blog-stack-footer .tp-home-blog-meta > span:nth-child(2) {
    display: inline;
  }
}

@media (min-width: 768px) {
  .tp-home-blog-stack-card:nth-child(n + 3) {
    display: flex;
  }

  .tp-home-blog-meta.is-light .tp-home-blog-author,
  .tp-home-blog-meta.is-light > span:last-child {
    display: inline-flex;
  }

  .tp-home-blog-featured {
    min-height: 500px;
  }

  .tp-home-blog-featured-content {
    right: 36px;
    bottom: 36px;
    left: 36px;
  }

  .tp-home-blog-featured-description {
    display: -webkit-box;
    max-width: 640px;
    margin-top: 13px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--tp-ff-p);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 992px) {
  .tp-home-blog-flight-route {
    position: absolute;
    inset: 0;
    display: block;
    color: rgba(7, 21, 22, 0.05);
    pointer-events: none;
  }

  .tp-home-blog-flight-route svg {
    width: 100%;
    height: 100%;
  }

  .tp-home-blog-header {
    margin-bottom: 46px;
  }

  .tp-home-blog-heading {
    max-width: 850px;
  }

  .tp-home-blog-layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 1fr);
    gap: 24px;
  }

  .tp-home-blog-featured {
    min-height: 552px;
    border-radius: 24px;
  }

  .tp-home-blog-stack {
    gap: 18px;
  }

  .tp-home-blog-stack-card {
    min-height: 0;
    flex: 1 1 0;
    border-radius: 18px;
  }

  .tp-home-blog-stack-image {
    width: 142px;
    min-width: 142px;
  }

  .tp-home-blog-stack-content > strong {
    font-size: 19px;
  }
}

@media (max-width: 374px) {
  .tp-home-blog-stack-arrow {
    display: none;
  }
}

@media (min-width: 1200px) {
  .tp-home-blog {
    padding: 112px 0 120px;
  }

  .tp-home-blog-stack-image {
    width: 170px;
    min-width: 170px;
  }

  .tp-home-blog-stack-content > strong {
    font-size: 21px;
  }
}

@media (hover: none) {
  .tp-home-blog-featured:active,
  .tp-home-blog-stack-card:active {
    transform: scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tp-home-blog-featured > img,
  .tp-home-blog-stack-card,
  .tp-home-blog-stack-image img,
  .tp-home-blog-all-btn i,
  .tp-home-blog-featured-cta i,
  .tp-home-blog-stack-arrow i {
    transition: none;
  }
}
