:root {
  --black: #000;
  --white: #fff;
  --transparent: #0000;
  /* Enhanced color system */
  --dark-gray: #1a1a1a;
  --medium-gray: #666;
  --light-gray: #999;
  --bg-gray: #f5f5f5;
  --accent-brown: #8B6F47;
  --accent-gold: #D4AF37;
  /* Legacy colors for compatibility */
  --999999: #999;
  --f2f2f2: #f2f2f2;
  --333333: #333;
  --d9d9d9: var(--white);
  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 120px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

/* Hide pagination when there are no items */
.w-dyn-list:has(.w-dyn-empty:only-child) .w-pagination-wrapper {
  display: none;
}

/* Style empty state message */
.w-dyn-empty {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(139, 111, 71, 0.04) 100%);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: 16px;
  text-align: center;
  border: 2px dashed rgba(139, 111, 71, 0.2);
  margin: var(--space-lg) 0;
}

.w-dyn-empty div {
  color: var(--medium-gray);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

/* Custom empty message for horse shows */
.w-dyn-empty div::before {
  content: '🐴 ';
  font-size: 32px;
  display: block;
  margin-bottom: var(--space-sm);
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--dark-gray);
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

p {
  margin-bottom: var(--space-sm);
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: var(--black);
  text-decoration: none;
}

.page-wrapper {
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  font-family: Inter, sans-serif;
  font-weight: 500;
  overflow: hidden;
}

.container {
  background-color: var(--transparent);
  width: 100%;
  max-width: 1265px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  padding: 24px var(--space-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.nav-link {
  color: var(--black);
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-link:hover {
  color: var(--accent-brown);
  background-color: rgba(139, 111, 71, 0.08);
}

.nav-link.w--current {
  color: var(--accent-brown);
  font-weight: 600;
}

.nav-frame {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-section.mb-0 {
  margin-bottom: 0;
}

.hero-section.home {
  margin-bottom: 0;
}

/* Modern hero background container */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--space-sm);
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero typography */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0 auto var(--space-md);
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto var(--space-xl);
  max-width: 700px;
}

/* Hero CTA buttons */
.hero-cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 54px;
  text-align: center;
}

.button.primary {
  background-color: var(--accent-brown);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
}

.button.primary:hover {
  background-color: #6F5837;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 111, 71, 0.4);
}

.button.secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-item {
  z-index: 1;
  width: 100%;
  max-width: 1057px;
  position: relative;
}

.hero-item.full {
  max-width: 100%;
}

.hero-item.full._1 {
  max-width: 94%;
}

.hero-item._w-1184 {
  max-width: 1183px;
}

.hero-item.about-post {
  max-width: 1081px;
}

.h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  display: inline;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.h1._1 {
  font-size: 54px;
  line-height: 65px;
  font-weight: 700;
}

.h1._1.text-color-white {
  color: var(--white);
}

.h1.t-color {
  color: rgba(255, 255, 255, 0.7);
  padding-right: 10px;
}

.h1-span {
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  display: block;
  margin-bottom: var(--space-md);
}

/* Override for hero sections where it should be white */
.hero-section .h1-span,
.hero-item .h1-span {
  color: rgba(255, 255, 255, 0.85);
}

.fixed-bg-image {
  vertical-align: baseline;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
  filter: brightness(0.6);
}

.fixed-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.section {
  z-index: 2;
  background-color: var(--white);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  position: relative;
}

.section.upcoming-horse-shows {
  padding-top: 110px;
  padding-bottom: 130px;
}

.section.post {
  background-color: var(--white);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.section.padding-130 {
  background: linear-gradient(135deg, var(--bg-gray) 0%, rgba(245,245,245,0.7) 100%);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  position: relative;
}

.section.padding-130::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section.about {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 90px;
  padding-bottom: 100px;
}

.section.the-ranch {
  padding-top: 40px;
  padding-bottom: 170px;
}

.section.gallary {
  background-color: var(--black);
  color: var(--white);
  padding-top: 110px;
  padding-bottom: 110px;
}

.section.padding {
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.f-2 {
  background-color: var(--white);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-top: 110px;
  padding-bottom: 110px;
}

.section.f-2.blog {
  background-color: var(--white);
  padding-bottom: 140px;
}

.section.f-2.background-white {
  background-color: var(--white);
}

.section.f-2.background_black {
  background-color: var(--black);
}

.section.margin-top {
  margin-top: 100px;
  padding-top: var(--space-2xl);
}

.post-f-1 {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  display: flex;
}

.line {
  background-color: var(--light-gray);
  width: 100%;
  height: 1px;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
  opacity: 0.3;
}

.line.mb-20 {
  margin-bottom: var(--space-md);
}

.line.m-0 {
  margin-top: 0;
  margin-bottom: 0;
  display: none;
}

.line.mb-30 {
  margin-top: 0;
}

.line.margin-t-b {
  margin-top: 100px;
  margin-bottom: 100px;
}

.line.mb-70 {
  margin-bottom: 70px;
}

.line.mb-5 {
  margin-bottom: 40px;
}

.ttile-frame.mb {
  margin-bottom: 134px;
}

.ttile-frame.mb-50 {
  margin-bottom: 50px;
}

.ttile-frame.mb-55 {
  margin-bottom: 55px;
}

.ttile-frame.mb-20 {
  margin-bottom: 20px;
}

.ttile-frame.mb-110 {
  margin-bottom: 110px;
}

.ttile-frame.mb-36 {
  margin-bottom: 36px;
}

.para-item {
  width: 100%;
  max-width: 1127px;
  font-size: 25px;
  line-height: 35px;
}

.para-item.margin {
  margin-top: 40px;
}

.para-item.text-color-white {
  color: var(--white);
}

.blog-item {
  cursor: pointer;
  width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 16px;
  overflow: hidden;
}

.blog-item:hover {
  transform: translateY(-4px);
}

.blog-item:hover .image-item {
  transform: scale(1.05);
}

.blog-item.p-1 {
  max-width: 952px;
}

.blog-item.p-2 {
  max-width: 471px;
}

.blog-item.p-3 {
  max-width: 534.18px;
}

.blog-item.p-4 {
  max-width: 529.4px;
}

.blog-item.p-5 {
  max-width: 395px;
  display: block;
}

.blog-item.p-6 {
  max-width: 840px;
}

.blog-item.p-6.mt {
  margin-top: 54px;
}

.thumbnail {
  width: 100%;
}

.image-wrap {
  border-radius: 16px;
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease-in-out;
}

.blog-item:hover .image-wrap {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.image-wrap.mb-36 {
  margin-bottom: 36px;
}

.image-wrap.mb-15 {
  margin-bottom: 15px;
}

.image-wrap._w-241 {
  max-width: 241px;
}

.image-wrap._1 {
  height: 259px;
}

.post-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.post-name.t-14 {
  font-size: 14px;
  line-height: 18px;
}

.post-name.text-color-white {
  color: var(--white);
}

.post-name-date {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.post-name-date.space {
  justify-content: space-between;
  align-items: center;
}

.post-name-date.white {
  color: var(--white);
}

.text-dark-16 {
  color: var(--999999);
  font-size: 16px;
}

.text-dark-16.white {
  color: var(--white);
}

.featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.featured-card {
  width: 100%;
  max-width: none;
}

.post-frame {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 92px;
  margin-bottom: 92px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .featured-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .featured-cards-grid {
    grid-template-columns: 1fr;
  }
}

.collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list.gap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.blog-post-link {
  color: var(--black);
  text-decoration: none;
}

.blog-name {
  margin-bottom: 4px;
  font-size: 16px;
}

.des-para {
  color: var(--999999);
  font-size: 16px;
}

.grid-col-3-ranch {
  grid-column-gap: var(--space-lg);
  grid-row-gap: var(--space-lg);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ranch-image-link {
  display: block;
  transition: transform 0.3s ease;
}

.ranch-image-link:hover {
  transform: translateY(-4px);
}

.ranch-image-link:hover .image-wrap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-wrap {
  z-index: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: var(--white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.footer-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(139, 111, 71, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.marque-frame {
  /* Hiding marquee text for cleaner design */
  display: none;
}

.marque-heading {
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 125px;
  line-height: 150px;
}

.footer {
  padding-top: 0;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  position: relative;
  z-index: 1;
}

.footer-inner {
  grid-column-gap: var(--space-xl);
  grid-row-gap: var(--space-xl);
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  display: flex;
}

.follow-us {
  min-width: 200px;
}

.follow-us > div:first-child {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f-item {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.follow-link {
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-weight: 500;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: all 0.3s ease;
  object-fit: cover;
}

.follow-link:hover {
  color: var(--accent-brown);
  transform: translateX(6px);
}

.follow-link:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
}

.text-1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}

.text-block {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.text-small {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.find-us {
  min-width: 250px;
}

.find-us > div:first-child {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  grid-column-gap: var(--space-lg);
  grid-row-gap: var(--space-md);
  justify-content: flex-start;
  align-items: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
}

.f-link-of-page {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.f-link-of-page:hover {
  color: var(--accent-brown);
}

.style-svg {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  height: 158px;
  position: absolute;
  inset: auto 0% 0%;
}

.image-item {
  cursor: default;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.image-item.padding {
  margin-bottom: 36px;
}

.btn-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.para-f-1 {
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.our-story-frame {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.our-story-frame._1 {
  margin-top: 55px;
}

.about-item-1 {
  width: 100%;
  max-width: 330px;
}

.margin-t-28 {
  margin-top: 28px;
}

.name-of-doctor {
  font-size: 16px;
  font-weight: 500;
}

.image-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 55px;
  display: grid;
}

.about-info {
  width: 100%;
  max-width: 764px;
}

.line-item {
  opacity: .3;
  background-color: #000;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.title-frame.mb-40 {
  margin-bottom: 40px;
}

.the-ranch-frame {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
  font-size: 25px;
  line-height: 35px;
  display: flex;
}

.gallery {
  background-color: #000;
}

.gallary-grid {
  margin-top: 50px;
}

.para {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.meet-our-horses {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.meet-horses-item {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 777px;
  display: flex;
}

.title-25 {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.title-25.mb-30 {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.horses-item-images {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.horses-item-images.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fixed-video-home {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.fixed-image {
  z-index: 1;
  background-image: url('../images/Rectangle-1-3.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 654px;
}

.post-link {
  color: var(--black);
  text-decoration: none;
}

.date {
  color: var(--999999);
}

.list-2 {
  padding-left: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.list-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bg-video {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0% 0% 0;
}

.horse-show-frame {
  grid-column-gap: 86px;
  grid-row-gap: 86px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 85px;
  display: flex;
}

.horse-item-1 {
  width: 100%;
  max-width: 402px;
}

.title-t-14 {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.title-t-14.mb {
  margin-bottom: 40px;
}

.title-t-14.mb20 {
  margin-bottom: 20px;
}

.title-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  display: grid;
}

.t_2 {
  flex: none;
}

.about-the-event {
  width: 100%;
  max-width: 777px;
}

.photos-frame {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-posts-info {
  margin-top: 76px;
}

.info-post-1.mb-30 {
  margin-bottom: 30px;
}

.award-box {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  width: 100%;
  max-width: 777px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.inf--1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.inf--1.gap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.text-block-2 {
  font-weight: 500;
}

.t-3 {
  border-bottom: 1px solid #0003;
  padding-bottom: 12px;
}

.d-date {
  font-size: 16px;
}

.margin-b {
  margin-bottom: 100px;
}

.collection-list-blog {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-blog.gap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.collection-list-wrapper.mb {
  margin-bottom: 100px;
}

.category-item-btn {
  color: var(--d9d9d9);
  background-color: #ffffff4d;
  border: 1px solid #ffffff63;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 13px;
  line-height: 16px;
  position: absolute;
  inset: 16px auto auto 26px;
}

.blog-content-frame {
  width: 100%;
  max-width: 777px;
  margin-left: auto;
  margin-right: 0;
}

.blog-author-t {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.blog-author-t.mb {
  margin-bottom: 40px;
}

.blog-author-t.mb20 {
  margin-bottom: 20px;
}

.author-para {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.blog-pagination {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
  display: flex;
}

.pagination-link {
  font-size: 54px;
  line-height: 65px;
}

.photos-frame.mb-16 {
  margin-bottom: 16px;
}

.multi-full-image {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.div-block-3 {
  width: 100%;
  height: 100%;
  position: relative;
}

.div-block-4 {
  width: 100%;
  height: 40px;
  position: absolute;
  inset: -20px 0% auto;
}

.text-block-3 {
  font-weight: 500;
}

.hero-stack {
  background-color: var(--transparent);
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-brown) 0%, #6F5837 100%);
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.3);
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: var(--space-lg);
  width: 100%;
  max-width: 300px;
}

.button-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 111, 71, 0.4);
  background: linear-gradient(135deg, #6F5837 0%, var(--accent-brown) 100%);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.hero-image {
  width: 100%;
  margin-top: var(--space-xl);
}

.form-block {
  margin-top: var(--space-2xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  padding: var(--space-2xl);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 111, 71, 0.1);
}

.w-form label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-gray);
  margin-top: var(--space-md);
}

.w-form label:first-of-type {
  margin-top: 0;
}

.w-input,
.text-field {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 2px solid rgba(139, 111, 71, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: Inter, sans-serif;
  color: var(--dark-gray);
}

.w-input:focus,
.text-field:focus {
  outline: none;
  border-color: var(--accent-brown);
  box-shadow: 0 4px 16px rgba(139, 111, 71, 0.15);
  transform: translateY(-1px);
}

.w-input::placeholder,
.text-field::placeholder {
  color: var(--light-gray);
  font-style: italic;
}

.text-field {
  min-height: 120px;
  resize: vertical;
}

.w-form-done {
  background-color: rgba(139, 186, 139, 0.1);
  color: #2d7a2d;
  padding: var(--space-md);
  border-radius: 12px;
  border: 2px solid rgba(45, 122, 45, 0.2);
  margin-top: var(--space-md);
  font-weight: 600;
}

.w-form-fail {
  background-color: rgba(220, 53, 69, 0.1);
  color: #c82333;
  padding: var(--space-md);
  border-radius: 12px;
  border: 2px solid rgba(200, 35, 51, 0.2);
  margin-top: var(--space-md);
  font-weight: 600;
}

.hyperlink {
  color: var(--999999);
  text-decoration: underline;
}

.text-field {
  padding-bottom: 100px;
}

.horse-show-pagination {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
  display: flex;
}

.pagination {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.image-2 {
  border-radius: 20px;
}

.horse-gallery-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: clip;
}

.horse_cms_list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.margin-top {
  margin-top: 2rem;
}

.grid-col-2 {
  grid-column-gap: var(--space-lg);
  grid-row-gap: var(--space-lg);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team14_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: flex-start;
  display: flex;
}

.button {
  border: 1px solid var(--\<unknown\|relume-variable-neutral-shade-7\>);
  background-color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
  color: var(--\<unknown\|relume-variable-neutral-white\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button.is-secondary {
  background-color: var(--\<unknown\|relume-variable-transparent\>);
  color: var(--\<unknown\|relume-variable-neutral-shade-7\>);
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.margin-bottom, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-medium {
  font-size: 1.125rem;
}

.team14_image {
  aspect-ratio: auto;
  cursor: pointer;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.text-size-large {
  font-size: 1.25rem;
}

.team14_image-wrapper {
  border-radius: var(--\<unknown\|relume-variable-radius-large\>);
  width: 100%;
  overflow: hidden;
}

.section_team14 {
  background-color: var(--\<unknown\|relume-variable-color-scheme-1-background\>);
  color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.team14_list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.margin-top-2, .margin-top-2.margin-xxlarge, .margin-top-2.margin-medium, .margin-top-2.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.spacer-small {
  padding-top: 1rem;
}

.text-small {
  font-size: 17px;
}

.image-item-show {
  cursor: pointer;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.image-item-show.padding {
  margin-bottom: 36px;
}

.text-style-link {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding: 20px;
  }

  .nav-link {
    padding: 10px 12px;
  }

  .nav-menu {
    background-color: var(--white);
    padding: 20px 20px 40px;
    border-radius: 12px;
    margin-top: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .hero-section {
    height: 70vh;
    min-height: 550px;
  }

  .hero-section.home {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .hero-item.full._1 {
    max-width: none;
  }

  .h1, .h1._1 {
    font-size: 40px;
    line-height: 50px;
  }

  .fixed-bg-image {
    height: auto;
    margin-top: 0;
    position: static;
  }

  .section.post {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .section.padding-130 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.the-ranch {
    padding-bottom: 100px;
  }

  .section.gallary {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .post-f-1 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .line.margin-t-b {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .ttile-frame.mb {
    margin-bottom: 60px;
  }

  .ttile-frame.mb-50, .ttile-frame.mb-55 {
    margin-bottom: 40px;
  }

  .para-item {
    font-size: 20px;
    line-height: 30px;
  }

  .image-wrap.mb-36 {
    margin-bottom: 20px;
  }

  .image-wrap.mb-15 {
    width: 100%;
  }

  .post-frame {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
  }

  .collection-list, .collection-list.gap {
    grid-template-columns: 1fr 1fr;
  }

  .background-video {
    height: 50vh;
    position: relative;
    inset: auto;
  }

  .footer-wrap {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .marque-heading {
    font-size: 80px;
    line-height: 110px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-inner {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .menu-button {
    border: 2px solid var(--black);
    border-radius: 100px;
    padding: 8px;
  }

  .menu-button.w--open {
    background-color: var(--black);
    color: var(--white);
  }

  .our-story-frame, .our-story-frame._1 {
    flex-flow: column;
  }

  .the-ranch-frame {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    font-size: 22px;
    line-height: 32px;
  }

  .list-grid {
    flex-flow: column;
    display: flex;
  }

  .bg-video {
    height: auto;
    position: static;
  }

  .horse-show-frame {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .horse-item-1 {
    max-width: none;
  }

  .title-t-14.mb {
    margin-bottom: 20px;
  }

  .collection-list-blog, .collection-list-blog.gap {
    grid-template-columns: 1fr 1fr;
  }

  .blog-content-frame {
    max-width: none;
  }

  .blog-author-t.mb {
    margin-bottom: 20px;
  }

  .container-2 {
    max-width: 728px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .team14_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .hero-section {
    height: 60vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 300px;
  }

  .h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .navbar {
    padding: 16px;
  }

  .section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .section.post {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .blog-item.p-1, .blog-item.p-2, .blog-item.p-3, .blog-item.p-4, .blog-item.p-5 {
    max-width: none;
  }

  .image-wrap._1 {
    height: auto;
  }

  .post-frame {
    flex-flow: column;
  }

  .collection-list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .grid-col-3-ranch {
    flex-flow: column;
    display: flex;
  }

  .background-video {
    height: 40vh;
  }

  .marque-heading {
    font-size: 50px;
    line-height: 80px;
  }

  .footer-inner {
    flex-flow: column;
  }

  .follow-us {
    text-align: center;
    width: 100%;
  }

  .f-item {
    margin-top: 20px;
  }

  .follow-link {
    font-size: 24px;
    line-height: 36px;
  }

  .text-1 {
    margin-bottom: 20px;
  }

  .text-block {
    font-size: 16px;
  }

  .find-us {
    text-align: center;
    width: 100%;
  }

  .footer-links {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .the-ranch-frame {
    font-size: 18px;
    line-height: 28px;
  }

  .title-25 {
    font-size: 20px;
    line-height: 30px;
  }

  .title-25.mb-30 {
    margin-bottom: 16px;
  }

  .horses-item-images.grid {
    flex-flow: column;
    display: flex;
  }

  .list-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .list-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .photos-frame {
    flex-flow: column;
    display: flex;
  }

  .collection-list-blog {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .collection-list-wrapper.mb {
    margin-bottom: 40px;
  }

  .author-para {
    font-size: 18px;
  }

  .blog-pagination {
    margin-top: 100px;
  }

  .pagination-link {
    font-size: 30px;
    line-height: 40px;
  }

  .hero-stack {
    padding: 60px 15px;
  }

  .horse-show-pagination {
    margin-top: 100px;
  }

  .grid-col-2 {
    flex-flow: column;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .team14_image-wrapper {
    height: 100%;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .team14_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    padding-top: 200px;
  }

  .h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .h1._1 {
    font-size: 30px;
    line-height: 40px;
  }

  .section.post {
    padding-bottom: 80px;
  }

  .section.padding, .section.f-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.f-2.blog {
    padding-bottom: 80px;
  }

  .ttile-frame.mb-110 {
    margin-bottom: 60px;
  }

  .para-item {
    font-size: 18px;
    line-height: 28px;
  }

  .para-item.margin {
    margin-top: 20px;
  }

  .image-wrap.mb-15 {
    margin-bottom: 10px;
  }

  .post-name-date {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
  }

  .text-dark-16 {
    font-size: 14px;
    line-height: 18px;
  }

  .post-frame {
    margin-top: 40px;
  }

  .background-video {
    height: 30vh;
  }

  .footer-links {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .f-link-of-page {
    font-size: 14px;
  }

  .para-f-1 {
    font-size: 16px;
  }

  .image-box {
    flex-flow: column;
    display: flex;
  }

  .para {
    font-size: 18px;
  }

  .meet-horses-item {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .title-25.mb-30 {
    margin-bottom: 10px;
  }

  .horses-item-images.grid {
    margin-top: 20px;
  }

  .list-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .horse-show-frame {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .title-box {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .inf--1 {
    font-size: 16px;
  }

  .inf--1.gap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .t-3 {
    padding-bottom: 8px;
  }

  .d-date {
    font-size: 14px;
  }

  .blog-content-frame {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .author-para {
    font-size: 16px;
  }

  .blog-pagination {
    margin-top: 60px;
  }

  .container-2 {
    max-width: none;
  }

  .horse-show-pagination {
    margin-top: 60px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  #w-node-_9de5eed6-0e7a-e7a3-def3-7a34a6fd755c-90dc545e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


