:root {
  --bdc-navy: #061a33;
  --bdc-blue: #0b2d52;
  --bdc-royal: #174f8a;
  --bdc-gold: #ad8034;
  --bdc-white: #ffffff;
  --bdc-cream: #f7f4ee;
  --bdc-text: #182033;
  --bdc-muted: #5d6472;
  --bdc-border: rgba(173, 128, 52, 0.52);
  --bdc-shadow: 0 18px 42px rgba(6, 26, 51, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--bdc-text);
  background: var(--bdc-cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.bdc-container {
  width: min(1030px, calc(100% - 40px));
  margin: 0 auto;
}

.bdc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #061a33 0%, #041529 100%);
  border-bottom: 1px solid rgba(173, 128, 52, 0.22);
}

.bdc-header-inner {
  width: min(1030px, calc(100% - 40px));
  min-height: 91px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 292px 1fr 52px;
  align-items: center;
  gap: 24px;
}

.bdc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.bdc-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.bdc-brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.bdc-brand-text strong {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdc-brand-text em {
  display: block;
  color: var(--bdc-gold);
  font-style: normal;
  font-size: 1.55em;
  line-height: 0.92;
  letter-spacing: 0;
}

.bdc-brand-text small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.bdc-primary-nav {
  justify-self: end;
}

.bdc-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bdc-menu li {
  position: relative;
}

.bdc-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bdc-menu .bdc-dropdown-toggle {
  cursor: default;
}

.bdc-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  display: grid;
  gap: 0;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: #041529;
  border: 1px solid rgba(173, 128, 52, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.bdc-menu li:hover > .sub-menu,
.bdc-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bdc-menu .sub-menu a {
  min-height: 36px;
  padding: 0 16px;
  font-size: 11px;
}

.bdc-menu .sub-menu a::after {
  display: none;
}

.bdc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--bdc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.bdc-menu a:hover::after,
.bdc-menu .current-menu-item > a::after,
.home .bdc-menu li:first-child a::after {
  transform: scaleX(1);
}

.bdc-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(173, 128, 52, 0.45);
  border-radius: 4px;
  background: transparent;
}

.bdc-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--bdc-gold);
}

.bdc-search-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid var(--bdc-gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.bdc-search-toggle span::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 13px;
  left: 13px;
  border: 2px solid var(--bdc-gold);
  border-radius: 50%;
}

.bdc-search-toggle span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  top: 27px;
  left: 27px;
  background: var(--bdc-gold);
  transform: rotate(45deg);
  transform-origin: left center;
}

.bdc-header-search {
  position: absolute;
  top: calc(100% - 1px);
  right: max(20px, calc((100vw - 1030px) / 2));
  z-index: 60;
  display: none;
  width: min(360px, calc(100vw - 40px));
  padding: 12px;
  background: #041529;
  border: 1px solid rgba(173, 128, 52, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.bdc-header-search.is-open {
  display: block;
}

.bdc-header-search form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.bdc-header-search input[type="search"] {
  flex: 1;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(173, 128, 52, 0.5);
}

.bdc-header-search input[type="submit"],
.bdc-header-search button {
  padding: 0 18px;
  border: 0;
  background: var(--bdc-gold);
  color: #fff;
  font-weight: 700;
}

.bdc-hero {
  min-height: 426px;
  margin-top: 0;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.9) 0%, rgba(6, 26, 51, 0.74) 46%, rgba(6, 26, 51, 0.2) 100%), var(--bdc-hero-bg);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.bdc-hero-inner {
  position: relative;
  min-height: 426px;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: center;
}

.bdc-hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0 42px 6px;
}

.bdc-hero h1 {
  margin: 0;
  color: var(--bdc-gold);
  font-size: clamp(54px, 6.3vw, 77px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bdc-hero h1 span {
  display: block;
  color: #fff;
  font-size: 0.57em;
  letter-spacing: 0.11em;
}

.bdc-title-rule {
  display: block;
  width: 348px;
  max-width: 100%;
  height: 20px;
  margin: 18px 0 16px;
  background: linear-gradient(90deg, var(--bdc-gold), var(--bdc-gold)) left 50% / calc(50% - 15px) 2px no-repeat,
    linear-gradient(90deg, var(--bdc-gold), var(--bdc-gold)) right 50% / calc(50% - 15px) 2px no-repeat;
  position: relative;
}

.bdc-title-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--bdc-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.bdc-hero p {
  width: min(430px, 100%);
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.42;
}

.bdc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bdc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 21px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bdc-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bdc-button:hover {
  transform: translateY(-2px);
}

.bdc-button-gold {
  background: linear-gradient(180deg, #d19a42 0%, #ad8034 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.bdc-button-outline {
  color: #fff;
  border: 1px solid #ad8034;
  background: rgba(6, 26, 51, 0.2);
}

.bdc-button-blue {
  color: #fff;
  background: var(--bdc-navy);
}

.bdc-button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.bdc-hero-portrait {
  position: absolute;
  right: 198px;
  top: 50%;
  bottom: auto;
  width: auto;
  height: 446px;
  z-index: 1;
  transform: translateY(-50%);
}

.bdc-hero-portrait img {
  width: auto;
  max-width: none;
  height: 100%;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
}

.bdc-themes,
.bdc-latest {
  background: linear-gradient(180deg, #fbfaf7 0%, var(--bdc-cream) 100%);
  padding: 18px 0 22px;
}

.bdc-themes {
  padding-top: 36px;
  padding-bottom: 44px;
}

.bdc-latest {
  padding-top: 36px;
}

.bdc-section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin: 0 0 18px;
}

.bdc-section-heading span {
  height: 1px;
  background: var(--bdc-gold);
  opacity: 0.75;
}

.bdc-section-heading h2 {
  margin: 0;
  color: var(--bdc-navy);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdc-theme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.bdc-theme-card {
  min-height: 126px;
  padding: 13px 9px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  color: var(--bdc-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--bdc-border);
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(6, 26, 51, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bdc-theme-card:hover {
  transform: translateY(-4px);
  border-color: var(--bdc-gold);
  box-shadow: var(--bdc-shadow);
}

.bdc-theme-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bdc-navy);
}

.bdc-theme-icon img {
  width: 51px;
  height: 51px;
  object-fit: contain;
  border-radius: 50%;
}

.bdc-theme-card strong {
  max-width: 130px;
  font-size: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.bdc-featured {
  background: var(--bdc-cream);
  padding: 0 0 36px;
}

.bdc-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(6, 26, 51, 0.07);
}

.bdc-featured-photo {
  min-height: 232px;
  background: #e7e0d4;
}

.bdc-featured-photo img {
  width: 100%;
  height: 100%;
  min-height: 232px;
  object-fit: cover;
  object-position: center;
}

.bdc-featured-card {
  min-height: 232px;
  padding: 28px 38px;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(6, 26, 51, 0.94), rgba(6, 26, 51, 0.86)), var(--bdc-featured-bg);
  background-size: cover;
  background-position: center;
}

.bdc-kicker {
  margin: 0 0 8px;
  color: var(--bdc-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdc-featured-card h2 {
  width: min(520px, 100%);
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 500;
}

.bdc-featured-card .bdc-title-rule {
  width: 220px;
  height: 14px;
  margin: 11px 0 9px;
}

.bdc-featured-card p:not(.bdc-kicker) {
  width: min(470px, 100%);
  margin: 0 0 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.bdc-post-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.bdc-latest-three .bdc-post-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bdc-load-more-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bdc-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(173, 128, 52, 0.42);
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(6, 26, 51, 0.06);
}

.bdc-view-button {
  width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  color: var(--bdc-navy);
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.bdc-view-button.is-active,
.bdc-view-button:hover {
  color: #fff;
  background: var(--bdc-gold);
}

.bdc-view-list .bdc-load-more-grid {
  grid-template-columns: 1fr;
}

.bdc-view-list .bdc-article-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.bdc-view-list .bdc-card-image {
  aspect-ratio: auto;
  min-height: 190px;
  height: 100%;
}

.bdc-view-list .bdc-card-body {
  padding: 24px 26px;
}

.bdc-view-list .bdc-card-body h3 {
  font-size: 22px;
}

.bdc-view-list .bdc-card-body p {
  font-size: 15px;
}

.bdc-load-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 100%);
  min-height: 58px;
  margin: 38px auto 0;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(180deg, #d19a42 0%, #ad8034 100%);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(6, 26, 51, 0.14);
}

.bdc-load-more-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.bdc-article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--bdc-border);
  border-radius: 3px;
  box-shadow: 0 5px 16px rgba(6, 26, 51, 0.055);
}

.bdc-card-image {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: var(--bdc-navy);
}

.bdc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.bdc-article-card:hover .bdc-card-image img {
  transform: scale(1.04);
}

.bdc-card-image-fallback {
  position: relative;
  background: radial-gradient(circle at 50% 35%, rgba(173, 128, 52, 0.25), transparent 36%), linear-gradient(145deg, var(--bdc-navy), var(--bdc-blue));
}

.bdc-card-body {
  padding: 9px 10px 12px;
}

.bdc-card-category {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--bdc-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bdc-card-body h3 {
  margin: 0 0 8px;
  color: #101a2d;
  font-size: 12px;
  line-height: 1.1;
}

.bdc-card-body p {
  margin: 0 0 12px;
  color: var(--bdc-muted);
  font-size: 12px;
  line-height: 1.35;
}

.bdc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bdc-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bdc-read-more::after {
  content: ">";
  color: var(--bdc-gold);
  font-size: 16px;
}

.bdc-author-section {
  padding: 96px 0 108px;
  background-color: #efeee9;
  background-image: linear-gradient(90deg, rgba(247, 244, 238, 0.95), rgba(247, 244, 238, 0.78)), var(--bdc-author-bg);
  background-size: cover;
  background-position: center;
}

.bdc-author-inner {
  display: grid;
  grid-template-columns: 170px 1fr 390px;
  gap: 26px;
  align-items: center;
}

.bdc-author-avatar img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 4px solid var(--bdc-gold);
  border-radius: 50%;
}

.bdc-author-copy h2 {
  margin: 0 0 8px;
  color: var(--bdc-navy);
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bdc-author-copy p {
  margin: 0 0 14px;
  color: var(--bdc-text);
  font-size: 14px;
  line-height: 1.32;
}

.bdc-author-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bdc-author-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.bdc-social-strip {
  padding: 13px 0 15px;
  background: linear-gradient(180deg, #082847 0%, #061a33 100%);
  border-top: 1px solid rgba(173, 128, 52, 0.24);
  border-bottom: 0;
}

.bdc-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.bdc-social-icons a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.bdc-social-icons a:hover {
  transform: translateY(-3px);
}

.bdc-social-icons img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

.bdc-site-footer {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 21, 41, 0.96), rgba(6, 26, 51, 0.9), rgba(4, 21, 41, 0.96)), var(--bdc-footer-bg);
  background-size: cover;
  background-position: center;
  border-top: 0;
}

.bdc-footer-inner {
  width: min(1030px, calc(100% - 40px));
  min-height: 170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.bdc-footer-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.bdc-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bdc-footer-brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.bdc-footer-brand-text strong {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdc-footer-brand-text em {
  display: block;
  color: var(--bdc-gold);
  font-style: normal;
  font-size: 1.55em;
  line-height: 0.92;
  letter-spacing: 0;
}

.bdc-footer-brand-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.15;
}

.bdc-footer-text {
  text-align: center;
}

.bdc-footer-text p {
  margin: 0 auto 10px;
  width: min(360px, 100%);
  font-size: 15px;
  line-height: 1.35;
}

.bdc-footer-divider {
  display: block;
  width: 285px;
  max-width: 100%;
  height: 13px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--bdc-gold), var(--bdc-gold)) left 50% / calc(50% - 10px) 1px no-repeat,
    linear-gradient(90deg, var(--bdc-gold), var(--bdc-gold)) right 50% / calc(50% - 10px) 1px no-repeat;
  position: relative;
}

.bdc-footer-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--bdc-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.bdc-footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px 20px;
}

.bdc-footer-credit img {
  width: 86px;
  max-height: 42px;
}

.bdc-front-content,
.bdc-site-main {
  margin-top: 0;
}

.bdc-front-content > p:empty,
.bdc-front-content > br {
  display: none;
}

.bdc-copyright {
  padding: 0 20px 18px;
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.bdc-page-hero,
.bdc-single-hero {
  padding: 74px 0 62px;
  color: #fff;
  background: linear-gradient(135deg, var(--bdc-navy), var(--bdc-blue));
}

.bdc-page-hero h1 {
  margin: 0;
  font-size: clamp(29px, 4.05vw, 49px);
  line-height: 1.05;
}

.bdc-single-hero h1 {
  margin: 0;
  font-size: clamp(24px, 3.04vw, 37px);
  line-height: 1.08;
}

.bdc-archive-section,
.bdc-content-section,
.bdc-related {
  padding: 44px 0 58px;
  background: var(--bdc-cream);
}

.bdc-archive-section .bdc-post-grid,
.bdc-related .bdc-post-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bdc-archive-section .bdc-view-list .bdc-load-more-grid,
.bdc-latest-three .bdc-view-list .bdc-load-more-grid {
  grid-template-columns: 1fr;
}

.bdc-archive-section .bdc-view-list .bdc-article-card,
.bdc-latest-three .bdc-view-list .bdc-article-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  width: 100%;
}

.bdc-archive-section .bdc-view-list .bdc-card-body,
.bdc-latest-three .bdc-view-list .bdc-card-body {
  min-width: 0;
}

.bdc-pagination {
  width: min(1030px, calc(100% - 40px));
  margin: 32px auto 0;
  text-align: center;
}

.bdc-single-wrap {
  padding: 44px 0 56px;
}

.bdc-single-image {
  margin: 0 0 34px;
}

.bdc-single-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 4px;
}

.bdc-entry-content {
  font-size: 19px;
}

.bdc-entry-content a {
  color: var(--bdc-royal);
  text-decoration: underline;
}

.bdc-entry-content > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.bdc-share,
.bdc-author-box {
  width: min(820px, 100%);
  margin: 30px auto 0;
}

.bdc-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(173, 128, 52, 0.35);
}

.bdc-share a {
  padding: 8px 12px;
  color: #fff;
  background: var(--bdc-blue);
  border-radius: 4px;
}

.bdc-author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--bdc-border);
  border-radius: 4px;
}

.bdc-author-box img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 3px solid var(--bdc-gold);
  border-radius: 50%;
}

.bdc-author-box h2,
.bdc-related h2 {
  margin: 0 0 8px;
  color: var(--bdc-navy);
}

.bdc-empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--bdc-border);
  text-align: center;
}

.bdc-about-page {
  padding: 64px 0 78px;
  background: var(--bdc-cream);
}

.bdc-about-page-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 46px;
  align-items: start;
}

.bdc-about-page-photo {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  justify-content: center;
  padding: 18px 12px 0;
  background: linear-gradient(180deg, rgba(6, 26, 51, 0.08), rgba(173, 128, 52, 0.08));
  border: 1px solid rgba(173, 128, 52, 0.28);
  border-radius: 4px;
  overflow: hidden;
}

.bdc-about-page-photo img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.bdc-about-page-text {
  color: var(--bdc-text);
  font-size: 19px;
  line-height: 1.72;
}

.bdc-about-page-text p {
  margin: 0 0 22px;
}

.bdc-about-page-text ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.bdc-about-page-text li {
  margin: 0 0 8px;
}

.bdc-contact-page {
  padding: 58px 0 74px;
  background: var(--bdc-cream);
}

.bdc-contact-wrap {
  width: min(780px, calc(100% - 40px));
}

.bdc-contact-intro {
  margin-bottom: 24px;
  text-align: center;
}

.bdc-contact-intro h2 {
  margin: 0 0 8px;
  color: var(--bdc-navy);
  font-size: 29px;
  line-height: 1.1;
  text-transform: uppercase;
}

.bdc-contact-intro p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--bdc-muted);
}

.bdc-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--bdc-border);
  border-radius: 4px;
  box-shadow: 0 12px 34px rgba(6, 26, 51, 0.08);
}

.bdc-contact-form label,
.bdc-contact-message {
  display: grid;
  gap: 7px;
}

.bdc-contact-form span {
  color: var(--bdc-navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.bdc-contact-form input,
.bdc-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(173, 128, 52, 0.45);
  border-radius: 3px;
  padding: 12px 13px;
  color: var(--bdc-text);
  background: #fff;
  font: inherit;
}

.bdc-contact-form input:focus,
.bdc-contact-form textarea:focus {
  outline: 2px solid rgba(173, 128, 52, 0.28);
  border-color: var(--bdc-gold);
}

.bdc-contact-message {
  grid-column: 1 / -1;
}

.bdc-contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.bdc-form-notice {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}

.bdc-form-success {
  color: #153f24;
  background: #e4f3e9;
  border: 1px solid #9acaa9;
}

.bdc-form-error {
  color: #682020;
  background: #f8e5e5;
  border: 1px solid #d7a0a0;
}

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