.DeveloperStorySectionContainer {
  width: 100%;
  max-width: 1160px;
  margin: 3rem auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 5;
}

.DeveloperStoryCardWrapper {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 7, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  padding: 2.8rem 2.4rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.DeveloperStoryCardWrapper:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.82), 0 0 30px rgba(255, 255, 255, 0.08);
}

.DeveloperStoryHeaderWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.DeveloperStorySoloBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  width: fit-content;
}

.DeveloperStoryTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--PureWhiteColor);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.DeveloperStoryPointsGridContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.25rem;
}

.DeveloperStoryPointItem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.DeveloperStoryPointIconWrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.DeveloperStoryPointIconSvg {
  width: 22px;
  height: 22px;
  stroke: var(--PureWhiteColor);
  stroke-width: 2;
  fill: none;
}

.DeveloperStoryPointContentWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.DeveloperStoryPointTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
}

.DeveloperStoryPointDescriptionText {
  font-size: 0.9rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.55;
}

.LuarmorProtectionSectionContainer {
  width: 100%;
  max-width: 860px;
  margin: 2rem auto 3rem auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 5;
}

.LuarmorProtectionCardWrapper {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 7, 0.92);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  padding: 2rem 2.2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 24px rgba(220, 38, 38, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.LuarmorProtectionCardWrapper:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.7), 0 0 32px rgba(220, 38, 38, 0.15);
}

.LuarmorShieldIconWrapper {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.LuarmorShieldIconSvg {
  width: 28px;
  height: 28px;
  stroke: #ef4444;
  stroke-width: 2;
  fill: none;
}

.LuarmorProtectionContentWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.LuarmorProtectionTitleHeading {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
}

.LuarmorProtectionDescriptionText {
  font-size: 0.9rem;
  color: var(--SubtleSecondaryTextColor);
  line-height: 1.55;
}

.LuarmorProtectionVisitLink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ef4444;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.LuarmorProtectionVisitLink:hover {
  color: #f87171;
}

@media (max-width: 640px) {
  .LuarmorProtectionCardWrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
