:root {
  --cream: #F7F7F7;
  --bark: #1A1A1A;
  --bark-light: #4D4D4D;
  --moss: #087067;
  --moss-light: #0A857B;
  --sand: #BFBFBF;
  --sand-light: #D9D9D9;
  --error: #E11D48;
  --success: #087067;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  --radius: 6px;
  --transition: 0.2s ease;
}

/* Creates a specialized version of Arial to match Inter and Montserrat */
/*
@font-face {
	font-family: 'Inter-Fallback';
	src: local('ArialMT'), local('Arial'); 
	ascent-override: 90%;
	descent-override: 22.5%;
	line-gap-override: 0%;
	size-adjust: 107%;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat-Fallback';
	src: local('ArialMT'), local('Arial'); 
	ascent-override: 96.8%;
	descent-override: 25.1%;
	line-gap-override: 0%;
	size-adjust: 108.5%;
	font-display: swap;
}
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, header, footer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-padding-top: 90px;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Inter-Fallback", sans-serif;
  background-color: #F7F7F7;
  color: #1A1A1A;
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, .h2, .h3 {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 48px;
  }
}

h2,
h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h2,
  h2 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  h2,
  h2 {
    font-size: 36px;
  }
}

.h3,
h3 {
  font-size: 18px;
}
@media (min-width: 768px) {
  .h3,
  h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .h3,
  h3 {
    font-size: 28px;
  }
}

.h4,
h4 {
  font-size: 16px;
}
@media (min-width: 768px) {
  .h4,
  h4 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .h4,
  h4 {
    font-size: 24px;
  }
}

section {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  section {
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  section {
    margin-bottom: 56px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.material-symbols-outlined {
  display: inline-flex;
  vertical-align: middle;
  vertical-align: -0.2em;
  line-height: inherit;
}

.page-wrap {
  padding: 60px 0;
  animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: #FFFFFF;
  /*background-image: url('/img/background-baner.svg'), linear-gradient(180deg, rgba(200, 232, 233, 1) 30%, rgba(216, 240, 241, 1) 100%);*/
  background-repeat: repeat;
  background-size: contain;
  background-position: center;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(44, 26, 14, 0.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: block;
  line-height: 1;
}
.site-logo img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}

.site-nav a {
  color: #013a61;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 24px;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .site-nav a {
    margin-left: 16px;
  }
}
.site-nav a:hover {
  color: #1A1A1A;
}
.site-nav a:hover .menu-item-label {
  text-decoration: underline;
}
.site-nav a.register {
  display: none;
}
@media (min-width: 576px) {
  .site-nav a.register {
    display: inline;
  }
}
@media (max-width: 767px) {
  .site-nav a .menu-item-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.site-footer {
  background: #013a61;
  color: #FFFFFF;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  margin-top: 80px;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .site-footer .container {
    flex-direction: column;
  }
}
.site-footer .container > div {
  margin: 4px 0;
}
.site-footer a {
  color: #D9D9D9;
  text-decoration: none;
}
.site-footer a svg g {
  fill: #D9D9D9;
}
.site-footer a:hover {
  color: #FFFFFF;
}
.site-footer a:hover svg g {
  fill: #FFFFFF;
}
.site-footer .site-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}
.site-footer .site-links li {
  width: fit-content;
  border-right: 1px solid #D9D9D9;
  padding-right: 8px;
  padding-left: 8px;
}
.site-footer .site-links li:last-child {
  border-right: unset;
}
.site-footer .site-links li a:hover {
  text-decoration: underline;
}

.card {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 40px;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: "Inter", "Inter-Fallback", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
}
.btn--primary {
  background: #087067;
  color: #FFFFFF;
  width: auto;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}
.btn--primary:hover {
  background: #0A857B;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 26, 14, 0.18);
}
.btn--secondary {
  background: transparent;
  color: #087067;
  border: 2px solid #087067;
}
.btn--secondary:hover {
  background: #087067;
  color: #FFFFFF;
}
.btn--tertiary {
  background: #013a61;
  color: #FFFFFF;
  width: auto;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}
.btn--tertiary:hover {
  background: #015C98;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 26, 14, 0.18);
}
.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.btn--verify {
  background: #4D4D4D;
  color: #D9D9D9;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn--verify:hover {
  background: #4D4D4D;
}
.btn--enroll {
  background: #087067;
  color: #FFFFFF;
}
.btn--enroll:disabled {
  background: #D9D9D9;
  cursor: not-allowed;
  color: #4D4D4D;
  transform: none;
  box-shadow: none;
}
.btn--enroll:not(:disabled):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.btn--cancel {
  background: #E11D48;
  color: #FFFFFF;
}
.btn--cancel:disabled {
  background: #D9D9D9;
  color: #4D4D4D;
  cursor: not-allowed;
}
.btn--cancel:not(:disabled):hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.btn--complete {
  background: #087067;
  color: #D9D9D9;
  font-size: 0.82rem;
  padding: 7px 14px;
}
.btn--complete:disabled {
  background: #D9D9D9;
  color: #4D4D4D;
  cursor: not-allowed;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: "Inter", "Inter-Fallback", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  background-color: #D9D9D9;
  color: #4D4D4D;
  text-transform: uppercase;
}
.tag:hover {
  background-color: #4D4D4D;
  color: #D9D9D9;
}

.form-title {
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.form-subtitle {
  color: #1A1A1A;
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.form-subtitle a {
  color: #087067;
  font-weight: 600;
  text-decoration: none;
}
.form-subtitle a:hover {
  text-decoration: underline;
}

.form-section {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 6px;
  margin: 28px 0 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #BFBFBF;
  border-radius: 4px;
  font-family: "Inter", "Inter-Fallback", sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
  background: #F7F7F7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #087067;
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.12);
  background: #FFFFFF;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E11D48;
}

.form-note {
  font-size: 0.85rem;
  color: #1A1A1A;
  margin-bottom: 14px;
}
.form-note a {
  color: #087067;
  font-weight: 600;
  text-decoration: none;
}
.form-note a:hover {
  text-decoration: underline;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1A1A1A;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #087067;
  flex-shrink: 0;
}

.waiver-box {
  background: #F7F7F7;
  border: 1.5px solid #BFBFBF;
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 0.83rem;
  color: #1A1A1A;
  line-height: 1.7;
  max-height: 180px;
  overflow-y: auto;
}

.payment-info {
  background: #D9D9D9;
  border-radius: 4px;
  padding: 16px 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #1A1A1A;
}

.ck-editor {
  --ck-z-panel: calc(var(--ck-z-default) + 10);
}
.ck-editor .ck-content {
  min-height: 500px;
}

.alert {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.alert ul {
  margin-left: 16px;
}
.alert ul li {
  margin-bottom: 4px;
}
.alert--error {
  background: #FDECEA;
  border-left: 4px solid #E11D48;
  color: #E11D48;
}
.alert--success {
  background: #EAFAF1;
  border-left: 4px solid #087067;
  color: #087067;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Inter", "Inter-Fallback", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status--pending {
  background: #FEF3CD;
  color: #856404;
}

.status--enrolled {
  background: #D1ECF1;
  color: #0C5460;
}

.status--completed {
  background: #D4EDDA;
  color: #155724;
}

.status--cancelled {
  background: #F8D7DA;
  color: #721C24;
}

.spots--ok {
  color: #087067;
  font-weight: 600;
}

.spots--low {
  color: #E11D48;
  font-weight: 600;
}

.verify-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #FEF3CD;
  border: 1.5px solid #F0C040;
  border-radius: 6px;
  padding: 18px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.verify-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.92rem;
  color: #1A1A1A;
}
.verify-banner__text strong {
  font-size: 1rem;
}
.verify-banner__sent {
  font-size: 0.9rem;
  font-weight: 600;
  color: #087067;
}

.empty-state {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  color: #1A1A1A;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
}

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.dog-card {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.13);
}
.dog-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.dog-card__info {
  flex: 1;
}
.dog-card__info h3 {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.dog-card__info p {
  font-size: 0.85rem;
  color: #1A1A1A;
}
.dog-card__edit {
  padding: 7px 14px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.dog-meta {
  margin-top: 2px;
}

.reg-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reg-card {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 24px 28px;
  border-left: 4px solid #BFBFBF;
}
.reg-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .reg-card__top {
    flex-direction: column;
  }
}
.reg-card__title {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.reg-card__meta {
  font-size: 0.88rem;
  color: #1A1A1A;
}
.reg-card__desc {
  font-size: 0.85rem;
  color: #1A1A1A;
  margin-top: 6px;
}
.reg-card__action {
  flex-shrink: 0;
}
.reg-card__actions {
  margin-top: 14px;
}
.reg-card__notice {
  margin-top: 12px;
  padding: 10px 14px;
  background: #D9D9D9;
  border-radius: 4px;
  font-size: 0.88rem;
  color: #1A1A1A;
}
.reg-card__notice--success {
  background: #EAFAF1;
  color: #087067;
}
.reg-card__notice--success a {
  color: #087067;
  font-weight: 600;
  margin-left: 8px;
}
.reg-card__dog-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.87rem;
  color: #1A1A1A;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.dashboard-section {
  margin-bottom: 52px;
}

.section-title {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.4rem;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .section-header {
    flex-wrap: wrap;
  }
}
.section-header .section-title {
  margin-bottom: 0;
  flex: 1 1 auto;
}
@media (max-width: 767px) {
  .section-header .section-title {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .section-header .btn {
    margin-top: 20px;
  }
}

.section-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #087067;
  text-decoration: none;
}
.section-link:hover {
  text-decoration: underline;
}

.dashboard-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 20px 24px;
  text-decoration: none;
  color: #1A1A1A;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dashboard-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.13);
}
.dashboard-link-card__icon {
  font-size: 1.5rem;
}
.dashboard-link-card__label {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}
.dashboard-link-card__arrow {
  font-size: 1.2rem;
  color: #087067;
}

.admin-class-block {
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  margin-bottom: 24px;
  overflow: hidden;
}
.admin-class-block__header {
  background: #4D4D4D;
  color: #FFFFFF;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.admin-class-block__header .reg-card__meta {
  color: #FFFFFF;
}
.admin-class-block__header form .checkbox-label {
  color: #FFFFFF;
}

.admin-reg-list {
  padding: 8px 0;
}

.admin-reg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #F7F7F7;
  flex-wrap: wrap;
}
.admin-reg-row:last-child {
  border-bottom: none;
}
.admin-reg-row__name {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-reg-row__dog {
  font-size: 0.83rem;
  color: #1A1A1A;
  font-weight: 400;
}
.admin-reg-row__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-action-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.application-view {
  max-width: 680px;
  margin: 0 auto;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.app-logo {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 2.4rem;
  color: #1A1A1A;
  font-weight: 700;
}
.app-logo span {
  color: #087067;
}

.app-contact {
  font-size: 0.82rem;
  color: #1A1A1A;
  text-align: right;
  line-height: 1.8;
}

.app-title {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.app-subtitle {
  font-size: 0.85rem;
  color: #1A1A1A;
  margin-bottom: 28px;
}

.app-section-title {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 6px;
  margin: 24px 0 14px;
}

.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.app-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.app-field--full {
  grid-column: 1/-1;
}

.app-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-value {
  font-size: 0.95rem;
  color: #1A1A1A;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}

.app-signature {
  font-size: 1.4rem;
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
}

.app-status-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid #D9D9D9;
  font-weight: 600;
}

.class-content {
  padding: 40px;
}

.ck-content h2 {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  margin: 24px 0 12px;
}
.ck-content h3 {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  margin: 20px 0 10px;
}
.ck-content p {
  margin-bottom: 12px;
  line-height: 1.7;
}
.ck-content ul, .ck-content ol {
  margin: 12px 0 12px 24px;
}
.ck-content li {
  margin-bottom: 6px;
}
.ck-content a {
  color: #087067;
}
.ck-content img {
  max-width: 100%;
  border-radius: 4px;
  margin: 12px 0;
}
.ck-content iframe {
  max-width: 100%;
  border-radius: 4px;
}
.ck-content figure.media {
  margin: 16px 0;
}

.certificate {
  background: #FFFFFF;
  border: 2px solid #BFBFBF;
  border-radius: 6px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  margin-bottom: 24px;
}
.certificate__header {
  margin-bottom: 40px;
}
.certificate__logo {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
}
.certificate__logo span {
  color: #4D4D4D;
}
.certificate__presents {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1A1A1A;
  margin-top: 8px;
}
.certificate__body {
  margin: 0 auto;
  max-width: 480px;
}
.certificate__this-certifies {
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.certificate__owner {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 2rem;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.certificate__and-dog {
  font-size: 0.9rem;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.certificate__dog {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.certificate__completed {
  font-size: 0.9rem;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.certificate__course {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1.6rem;
  color: #087067;
  margin-bottom: 6px;
}
.certificate__duration {
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 40px;
}
.certificate__footer {
  border-top: 1px solid #D9D9D9;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
}
.certificate__trainers {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
  margin: auto;
}
.certificate__trainer-name {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 4px;
  margin-bottom: 4px;
  min-width: 160px;
}
.certificate__trainer-title {
  font-size: 0.78rem;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.certificate__date {
  font-size: 0.9rem;
  color: #1A1A1A;
}
.certificate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-intro {
  color: #4D4D4D;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 18px 20px;
  text-decoration: none;
  color: #1A1A1A;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.13);
}
.contact-method__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.contact-method__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4D4D4D;
  margin-bottom: 2px;
}
.contact-method__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A1A1A;
}

@media (max-width: 767px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
body:has(.hero) .site-header:not(.scrolled) {
  background-color: transparent !important;
  transition: all 0.3s ease;
  box-shadow: unset;
}
body:has(.hero) .site-header:not(.scrolled) .site-logo,
body:has(.hero) .site-header:not(.scrolled) .site-nav a {
  filter: invert(1) brightness(2) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.9));
}

.hero {
  position: relative;
  max-width: 1920px;
  margin-top: -88px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .hero {
    margin-bottom: 60px;
    aspect-ratio: 1355/680;
    overflow: hidden;
  }
}
@media (min-width: 1355px) {
  .hero {
    height: 680px;
    max-height: 680px;
    aspect-ratio: unset;
  }
}
@media (min-width: 992px) {
  .hero {
    margin-bottom: 90px;
  }
}
.hero .hero-image {
  position: relative;
  overflow: hidden;
  line-height: 1;
}
@media (max-width: 767px) {
  .hero .hero-image {
    height: 75vw;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .hero .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.hero .hero-image::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
}
.hero .hero-image picture {
  display: block;
}
@media (max-width: 767px) {
  .hero .hero-image img {
    width: unset;
    max-width: unset;
    height: 75vw;
    transform: translateX(-12.5%);
  }
}
.hero .hero-text {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .hero .hero-text {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .hero .hero-text {
    position: absolute;
    bottom: 48px;
  }
}
@media (min-width: 768px) {
  .hero .hero-text .inner-container {
    max-width: 70%;
  }
}
.hero .hero-text .inner-container * {
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .hero .hero-text .inner-container * {
    color: #FFFFFF;
    text-shadow: 0 1px 3px #000000;
  }
}
.hero .hero-text h1 {
  margin-bottom: 8px;
}
.hero .hero-text p {
  margin-bottom: 16px;
}
.hero .hero-text .btn-hero {
  text-decoration: none;
}
.hero .hero-text .btn-hero:hover {
  text-decoration: underline;
}

.beginners h2 {
  color: #0A857B !important;
  margin-top: 12px;
  text-align: center;
}
.beginners .cta-container > a {
  flex: 0 0 auto;
  max-width: 100%;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 24px;
}
@media (min-width: 768px) {
  .beginners .cta-container > a {
    padding: 32px;
  }
}
.beginners .cta-container > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 26, 14, 0.18);
}
.beginners .cta-container > a .material-symbols-outlined {
  display: block;
  width: 64px;
  height: 64px;
  font-size: 64px;
  line-height: 1;
  overflow: hidden;
  margin-bottom: 12px;
}
.beginners .cta-container > a p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .beginners .cta-container > a p {
    font-size: 20px;
    line-height: 1.1;
  }
}
.beginners .cta-container .cta-evaluation {
  background-color: #0A857B;
  border: 2px solid #0A857B;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.beginners .cta-container .cta-evaluation:hover {
  background-color: #FFFFFF;
  border: 2px solid #087067;
  color: #087067;
  transition: all 0.3s ease-in-out;
}
.beginners .cta-container .cta-classes {
  background-color: #013a61;
  border: 2px solid #013a61;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.beginners .cta-container .cta-classes:hover {
  background-color: #FFFFFF;
  border: 2px solid #013a61;
  color: #013a61;
  transition: all 0.3s ease-in-out;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --gap: 12px;
}
@media (min-width: 576px) {
  .two-col {
    --gap: 24px;
  }
}
@media (min-width: 992px) {
  .two-col {
    --gap: 48px;
  }
}
.two-col > div {
  --num-of-col: 1;
}
@media (min-width: 576px) {
  .two-col > div {
    --num-of-col: 2;
  }
}
.two-col > div {
  flex: 0 0 calc((100% - var(--gap) * (var(--num-of-col) - 1)) / var(--num-of-col));
}

.content-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --gap: 24px;
}
.content-cards-grid > a {
  --num-of-col: 1;
}
@media (min-width: 576px) {
  .content-cards-grid > a {
    --num-of-col: 2;
  }
}
@media (min-width: 992px) {
  .content-cards-grid > a {
    --num-of-col: 3;
  }
}
.content-cards-grid > a {
  flex: 0 0 calc((100% - var(--gap) * (var(--num-of-col) - 1)) / var(--num-of-col));
}

.content-card .card-image {
  overflow: hidden;
  aspect-ratio: 3/2;
}
@media (min-width: 992px) {
  .content-card .card-image {
    aspect-ratio: 1;
  }
}
.content-card .card-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

@media (min-width: 576px) {
  .recent-article-card > div {
    --num-of-col: 1;
  }
}
@media (min-width: 768px) {
  .recent-article-card > div {
    --num-of-col: 2;
  }
}
.recent-article-card .recent-image {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.recent-article-card .recent-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.recent-article-card .recent-image:hover img {
  transform: scale(1.025);
  transition: transform 0.3s ease;
}
.recent-article-card .recent-tags .tag {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 8px;
}

.content-card {
  color: #1A1A1A;
  text-decoration: none;
}
.content-card .card-image {
  margin-bottom: 16px;
}
.content-card .card-image img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.content-card .card-body h3 {
  font-size: 16px;
}
@media (min-width: 768px) {
  .content-card .card-body h3 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .content-card .card-body h3 {
    font-size: 22px;
  }
}
.content-card:hover img {
  transform: scale(1.025);
  transition: transform 0.3s ease;
}
.content-card:hover h3 {
  text-decoration: underline;
}

.upcoming-classes .class .class__title {
  font-weight: 700;
}
.upcoming-classes .class:has(+ .class) {
  margin-bottom: 24px;
}
.upcoming-classes .btn.btn--primary,
.upcoming-classes .btn.btn--secondary {
  margin: 24px auto 0 auto;
}

.blog-recent-grid .btn.btn--primary,
.blog-recent-grid .btn.btn--secondary {
  margin: 24px auto 0 auto;
  width: fit-content;
  display: block;
}

.more-articles .years-list,
.more-articles .tags-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .more-articles .years-list,
  .more-articles .tags-list {
    column-count: 2;
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .more-articles .years-list,
  .more-articles .tags-list {
    column-count: 3;
    column-gap: 20px;
  }
}
.more-articles .years-list a,
.more-articles .tags-list a {
  text-indent: 8px hanging;
  display: inline-block;
}

.blog-content-cta .heading {
  color: #013a61;
  margin-bottom: 4px;
}
.blog-content-cta .heading,
.blog-content-cta p {
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  line-height: 1.2;
}
.blog-content-cta .cta-container {
  margin: 10px 0 18px 0 !important;
}
@media (max-width: 767px) {
  .blog-content-cta .cta-container {
    --gap: 12px !important;
  }
}

body.page h1 {
  margin-bottom: 24px;
}
body.page h2 {
  color: #013a61;
  margin-bottom: 24px;
}
body.page h3 {
  margin-bottom: 12px;
}
body.page h4 {
  margin-bottom: 6px;
}
body.page a:has(> h2, > h3, > h4) {
  color: #1A1A1A;
  text-decoration: none;
}
body.page a:has(> h2, > h3, > h4):hover {
  text-decoration: underline;
}
body.page p {
  margin-bottom: 16px;
}
body.page main,
body.page aside:has(.more-articles) {
  margin-top: 36px;
}
@media (min-width: 768px) {
  body.page main,
  body.page aside:has(.more-articles) {
    margin-top: 48px;
  }
}
body.page main a:not([class]),
body.page aside:has(.more-articles) a:not([class]) {
  color: inherit;
}
body.page main a:not([class]):hover,
body.page aside:has(.more-articles) a:not([class]):hover {
  text-decoration: none;
}
body.page .archive-label {
  font-family: "Inter", "Inter-Fallback", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4D4D4D;
  text-transform: uppercase;
}
body.page .blog-post .post-media,
body.page .blog-post .post-publication-date {
  margin-bottom: 16px;
}
body.page .blog-post .post-media iframe[src*=youtube] {
  width: 100%;
  aspect-ratio: 16/9;
}
body.page .blog-post .post-media:has(.media-video.is-vertical) {
  width: fit-content;
}
@media (min-width: 576px) {
  body.page .blog-post .post-media:has(.media-video.is-vertical) {
    float: left;
    margin: 0 16px 24px 0;
  }
}
body.page .blog-post .post-media:has(.media-video.is-vertical) .media-video {
  width: fit-content;
}
body.page .blog-post .post-media .media-video:not(.is-vertical):has(iframe[src*=facebook]) iframe {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
}
body.page .blog-post .post-tags .tag {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 8px;
}
body.page .page-body img,
body.page .post-body img {
  max-width: 100%;
  height: auto;
}
body.page .iframe-placeholder {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
  background-color: #4D4D4D;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}
body.page .note {
  color: #6E6E6E;
}
body.page .cta {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: var(--gap);
  --gap: 24px;
}
@media (min-width: 992px) {
  body.page .cta {
    padding: 32px 24px;
    width: calc(100% + var(--gap) * 2);
    margin-left: calc(var(--gap) * -1);
  }
}
@media (min-width: 1200px) {
  body.page .cta {
    width: calc(100% + var(--gap) * 8);
    margin-left: calc(var(--gap) * -4);
  }
}
body.page .cta .inner-container {
  width: 100%;
}
body.page .cta .inner-container .heading,
body.page .cta .inner-container .note, body.page .cta .inner-container > p {
  max-width: 960px;
  text-align: center;
}
body.page .cta .inner-container .heading {
  margin-left: auto;
  margin-right: auto;
}
body.page .cta .inner-container .note, body.page .cta .inner-container > p {
  margin: 0 auto;
}
body.page .cta .cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  gap: var(--gap);
}

@media print {
  .site-header,
  .site-footer,
  .btn,
  .admin-reg-row__actions,
  .certificate__actions {
    display: none !important;
  }
  .card {
    box-shadow: none;
    padding: 0;
  }
  .page-wrap {
    padding: 0;
  }
  .certificate {
    border: 3px solid #000;
    box-shadow: none;
  }
}
@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 28px 20px;
  }
  .form-title {
    font-size: 1.6rem;
  }
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dog-grid {
    grid-template-columns: 1fr;
  }
}
.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 30px;
  z-index: 1;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(44, 26, 14, 0.2);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.consent .btn {
  display: inline-flex;
  text-align: left;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.consent .btn--toggle[aria-expanded=false] .expand-circle-up {
  display: none;
}
.consent .btn--toggle[aria-expanded=true] {
  background-color: #013a61;
  color: #FFFFFF;
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.consent .btn--toggle[aria-expanded=true] .expand-circle-down {
  display: none;
}
.consent .consent-main {
  padding-top: 14px;
}
.consent .consent-customize {
  border-top: 1px solid #013a61;
  padding-top: 30px;
}
.consent .consent-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --gap: 12px;
}
@media (min-width: 768px) {
  .consent .consent-row {
    --gap: 24px;
  }
}
.consent .consent-row .consent-row-btn {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .consent .consent-row .consent-row-btn {
    flex: 0 0 calc(40% - var(--gap) / 2);
  }
}
@media (min-width: 992px) {
  .consent .consent-row .consent-row-btn {
    flex: 0 0 calc(20% - var(--gap) / 2);
  }
}
.consent .consent-row .consent-row-text {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .consent .consent-row .consent-row-text {
    flex: 0 0 calc(60% - var(--gap) / 2);
  }
}
@media (min-width: 992px) {
  .consent .consent-row .consent-row-text {
    flex: 0 0 calc(80% - var(--gap) / 2);
  }
}

.reviews.three-items .reviews-row, .reviews.six-items .reviews-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  --gap: 12px;
}
@media (min-width: 768px) {
  .reviews.three-items .reviews-row, .reviews.six-items .reviews-row {
    --gap: 24px;
  }
}
@media (min-width: 992px) {
  .reviews.three-items .reviews-row, .reviews.six-items .reviews-row {
    width: calc(100% + var(--gap) * 2);
    margin-left: calc(var(--gap) * -1);
  }
}
@media (min-width: 1200px) {
  .reviews.three-items .reviews-row, .reviews.six-items .reviews-row {
    width: calc(100% + var(--gap) * 8);
    margin-left: calc(var(--gap) * -4);
  }
}
.reviews.three-items .reviews-row .review-item, .reviews.six-items .reviews-row .review-item {
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .reviews.three-items .reviews-row .review-item, .reviews.six-items .reviews-row .review-item {
    flex: 0 0 calc(50% - var(--gap) / 2);
  }
}
@media (min-width: 992px) {
  .reviews.three-items .reviews-row .review-item, .reviews.six-items .reviews-row .review-item {
    flex: 0 0 calc(33.3333333333% - var(--gap) * 2 / 3);
  }
}
.reviews.three-items .reviews-row .reviews-more, .reviews.six-items .reviews-row .reviews-more {
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .reviews.three-items .reviews-row .reviews-more, .reviews.six-items .reviews-row .reviews-more {
    flex: 0 0 calc(50% - var(--gap) / 1);
  }
}
@media (min-width: 992px) {
  .reviews.three-items .reviews-row .reviews-more, .reviews.six-items .reviews-row .reviews-more {
    flex: 0 0 100%;
  }
}
.reviews .review-item {
  background-color: #FFFFFF;
  color: #1A1A1A;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(44, 26, 14, 0.1);
  padding: 20px;
}
@media (min-width: 992px) {
  .reviews .review-item {
    padding: 24px;
  }
}
.reviews .review-item .review-info-container {
  display: flex;
}
.reviews .review-item .review-info-container .review-icon {
  flex: 0 0 40px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Montserrat-Fallback", sans-serif;
  font-size: 24px;
  line-height: 1;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  margin-right: 8px;
  color: #FFFFFF;
  box-shadow: 0 0 8px rgba(44, 26, 14, 0.6);
}
.reviews .review-item .review-info-container .review-author-container {
  margin-bootm: 4px;
}
.reviews .review-item .review-info-container .review-author-container h3 {
  display: inline;
  font-size: 18px !important;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .reviews .review-item .review-info-container .review-author-container h3 {
    font-size: 20px !important;
  }
}
.reviews .review-item .review-info-container .review-author-container img {
  display: inline;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  vertical-align: -0.2em;
}
.reviews .review-item .review-info-container .review-date-place {
  font-size: 15px;
  text-transform: uppercase;
}
.reviews .review-item .review-info-container .review-date-place .review-place {
  font-size: 14px;
}
.reviews .review-item .review-stars img {
  display: block;
  width: 84px;
  height: 14px;
  margin: 16px auto 0 auto;
}
.reviews .review-item .review-body p span[style*=background-color] {
  color: #000000 !important;
}
.reviews .review-item:nth-child(1) .review-info-container .review-icon {
  background-color: #1E40AF;
}
.reviews .review-item:nth-child(2) .review-info-container .review-icon {
  background-color: #087067;
}
.reviews .review-item:nth-child(3) .review-info-container .review-icon {
  background-color: #013a61;
}
.reviews .review-item:nth-child(4) .review-info-container .review-icon {
  background-color: #C24B00;
}
.reviews .review-item:nth-child(5) .review-info-container .review-icon {
  background-color: #7B2CBF;
}
.reviews .review-item:nth-child(6) .review-info-container .review-icon {
  background-color: #7B3F00;
}
.reviews .reviews-more {
  align-self: center;
}
.reviews .reviews-more a {
  margin: 0 auto;
  width: fit-content;
  display: block;
}

/*# sourceMappingURL=style.css.map */
