/* About Snapshot Section Styles */
.omtw-about-wrapper {
  background-color: #ffffff;
  padding: 90px 24px;
}

.omtw-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 60px;
  align-items: center;
}

.omtw-about-image-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  background: #FAF7F0;
  padding: 24px;
}

.omtw-about-image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.omtw-floating-top-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  border: 1px solid #EAF0E8;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.omtw-floating-top-badge .icon-check {
  width: 24px;
  height: 24px;
  background: #EAF0E8;
  color: #1F3D2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
}

.omtw-floating-top-badge .badge-text-top {
  font-weight: 700;
  font-size: 13px;
  color: #1A2E1E;
}

.omtw-floating-top-badge .badge-text-sub {
  font-size: 11px;
  color: #718096;
}

.omtw-floating-bottom-box {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: #1F3D2B;
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 30px rgba(31, 61, 43, 0.3);
  text-align: center;
  z-index: 2;
}

.omtw-floating-bottom-box .num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.omtw-floating-bottom-box .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94B48A;
  font-weight: 700;
}

.omtw-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FAF7F0;
  color: #1F3D2B;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.omtw-about-eyebrow i,
.omtw-about-eyebrow svg,
.omtw-about-cta i,
.omtw-about-cta svg {
  width: 1em;
  height: 1em;
  font-size: 16px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
  flex-shrink: 0;
}

.omtw-about-title {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 700;
  color: #1A2E1E;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.omtw-about-paragraph {
  font-size: 15px;
  line-height: 1.65;
  color: #4B564D;
  margin-bottom: 16px;
}

.omtw-about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  border-top: 1px solid #EDF2F7;
  padding-top: 24px;
}

.omtw-about-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.omtw-about-feature-icon {
  width: 42px;
  height: 42px;
  background: #FAF7F0;
  color: #1F3D2B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.omtw-about-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.omtw-about-feature-icon i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.omtw-about-feature-title {
  font-weight: 700;
  font-size: 15px;
  color: #1A2E1E;
  margin: 0 0 4px 0;
}

.omtw-about-feature-desc {
  font-size: 12px;
  color: #718096;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 991px) {
  .omtw-about-container {
    grid-template-columns: 1fr;
  }

  .omtw-floating-bottom-box {
    right: 10px;
  }

  .omtw-about-features-grid {
    grid-template-columns: 1fr;
  }
}
