:root {
  --md-primary-fg-color: #2F4156;
  --md-primary-fg-color--light: #567C8D;
  --md-primary-fg-color--dark: #1A2E42;
  --md-accent-fg-color: #D4956A;
  --md-default-bg-color: #F5EFEB;
  --md-default-fg-color: #2F4156;
  --md-default-fg-color--light: #2F4156;
  --md-default-fg-color--dark: #2F4156;
  --md-typeset-a-color: #567C8D;
  --md-footer-bg-color: #2F4156;
  --md-footer-fg-color: #F5EFEB;
  --md-header-fg-color: #FFFFFF;
  --md-header-bg-color: #1A2E42;
}

.md-post__action a {
  background-color: #2F4156;
  color: #FFFFFF !important;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #2F4156;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.md-post__action a:hover {
  background-color: #D4956A;
  color: #FFFFFF !important;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.md-header {
  height: 3.2rem;
}
.md-header__inner {
  height: 3.2rem;
}
.md-header__button.md-logo {
  padding: 0.3rem;
}
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  height: 1.8rem;
  width: auto;
}

/* Dev landing page */
.dev-hero {
  background: linear-gradient(135deg, #2F4156 0%, #567C8D 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 2rem;
}
.dev-hero h1 {
  color: #fff !important;
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
}
.dev-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  color: #fff;
}
.dev-price-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.dev-price-from, .dev-price-monthly {
  background: rgba(255,255,255,0.15);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
}
.dev-video-wrapper {
  margin: 2rem 0;
}
.dev-video-wrapper video {
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
  background: #1A2E42;
}
.dev-video-placeholder {
  background: #C8D9E6;
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: #2F4156;
  font-size: 1.1rem;
  border: 2px dashed #567C8D;
}
.dev-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.dev-gallery a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dev-gallery a:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.dev-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.dev-cta {
  background: #f0f0f0;
  border: 2px solid #d0d0d0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.dev-cta h2 {
  color: #2F4156;
  margin-top: 0;
}
.dev-cta p {
  max-width: 500px;
  margin: 1rem auto 1.5rem;
  color: #2F4156;
}
.dev-cta-btn {
  display: inline-block;
  background: #D4956A;
  color: #fff !important;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.dev-cta-btn:hover {
  background: #2F4156;
  color: #fff !important;
}
.dev-cta-btn-wa {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff !important;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.dev-cta-btn-wa:hover {
  background: #128C7E;
  color: #fff !important;
}
.dev-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.dev-amenities span {
  background: #fff;
  border: 1px solid #C8D9E6;
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
/* GLightbox — constrain image to 90vh / 800px max */
.gslide-image img {
  max-height: 90vh !important;
  max-width: 800px !important;
  width: auto !important;
  height: auto !important;
}
@media (max-width: 840px) {
  .gslide-image img {
    max-width: 90vw !important;
  }
}
@media (max-width: 600px) {
  .dev-price-bar { flex-direction: column; align-items: center; }
  .dev-gallery { grid-template-columns: 1fr 1fr; }
}
