a {
	text-decoration: none !important;
}

/* Ensure details blocks have a consistent width */
#post-42 details {
  display: block;
  width: 100%;
  max-width: 500px; /* Adjust as needed */
  box-sizing: border-box;
}

/* Style the summary element */
#post-42 details summary {
  font-weight: bold;
  cursor: pointer;
}

/* Prevent content from causing width expansion */
#post-42 details > * {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Announcement Bar */
.site-announcement-bar {
  background-color: #fff;
  color: #000;
  font-size: 0.95rem;
  position: relative;
  z-index: 9999;
}

.site-announcement-bar__inner {
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
}

.site-announcement-bar__text {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.site-announcement-bar__link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.site-announcement-bar__link:hover {
  text-decoration: underline;
}

.site-announcement-bar__close {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero */
.home-cyphr-hero {
  background:
    radial-gradient(circle at top right, rgba(53, 195, 214, 0.22), transparent 30%),
    linear-gradient(135deg, #071923 0%, #0c2430 55%, #103848 100%);
  color: #ffffff;
  padding: 5rem 1rem;
}

.home-cyphr-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

.home-cyphr-hero__eyebrow,
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7ee6e6;
  margin-bottom: 1rem;
}

.home-cyphr-hero__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.home-cyphr-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.home-cyphr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.home-cyphr-hero__trust {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-cyphr-hero__mockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.home-cyphr-hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Spotlight */
.home-cyphr-spotlight {
  padding: 4.5rem 1rem;
  background: #f7fbfc;
}

.home-cyphr-spotlight__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.home-cyphr-spotlight__heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.home-cyphr-spotlight__heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.home-cyphr-spotlight__heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #37515c;
}

.home-cyphr-spotlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d9e7eb;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(8, 32, 43, 0.05);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: #4c6670;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn--primary {
  background: linear-gradient(90deg, #18c3c8 0%, #1198c7 100%);
  color: #ffffff;
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.home-cyphr-spotlight .btn--secondary {
  color: #0c2430;
  border-color: #b9d3da;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-cyphr-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-cyphr-spotlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-announcement-bar__inner {
    align-items: flex-start;
  }

  .home-cyphr-hero {
    padding: 4rem 1rem;
  }

  .home-cyphr-spotlight__grid {
    grid-template-columns: 1fr;
  }

  .home-cyphr-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}