<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* =========================================
   AK – Catley Dog Grid / Catley Ranch
   Dark premium design + green accent
========================================= */

.ak-catley-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 18px 72px;
  background: #050805;
  color: #ffffff;
}

.ak-catley-page h1 {
  color: #ffffff;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.ak-catley-page p {
  max-width: 760px;
  color: #d7ddd4;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  margin: 0 0 34px;
}

.ak-catley-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ak-catley-grid a,
.ak-dog-card {
  text-decoration: none !important;
  color: #ffffff !important;
}

.ak-dog-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #101610 0%, #080b08 100%);
  border: 1px solid rgba(124, 184, 86, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ak-dog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 184, 86, 0.16), transparent 34%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.9;
  z-index: 2;
}

.ak-dog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 184, 86, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.ak-dog-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.ak-dog-card:hover .ak-dog-img {
  transform: scale(1.045);
}

.ak-dog-content {
  position: relative;
  z-index: 3;
  padding: 18px 18px 20px;
  background: rgba(5, 8, 5, 0.86);
  backdrop-filter: blur(10px);
}

.ak-dog-content h3 {
  color: #ffffff !important;
  margin: 0 0 8px;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ak-dog-content p {
  color: #b9c9b1 !important;
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.4;
}

.ak-dog-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8fcb62 !important;
  font-size: 13px;
  line-height: 1.4;
}

.ak-dog-content span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8fcb62;
  box-shadow: 0 0 14px rgba(143, 203, 98, 0.8);
}

/* Tablet */
@media (min-width: 640px) {
  .ak-catley-page {
    padding: 64px 24px 88px;
  }

  .ak-catley-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .ak-catley-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .ak-dog-content {
    padding: 22px 22px 24px;
  }
}

/* Velký desktop */
@media (min-width: 1440px) {
  .ak-catley-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ak-catley-grid {
  align-items: stretch;
}

.ak-dog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ak-dog-img {
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
}

.ak-dog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ak-dog-card:not(:has(.ak-dog-img)) {
  min-height: 260px;
  background:
    radial-gradient(circle at 50% 35%, rgba(143,203,98,0.12), transparent 38%),
    linear-gradient(180deg, #071007 0%, #050705 100%);
}

.ak-dog-card:not(:has(.ak-dog-img))::after {
  content: "Catley Ranch";
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.14);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.ak-catley-page {
  padding-bottom: 34px;
}
</style>
<!-- end Simple Custom CSS and JS -->
