/* === EGE2 Home === */
.home-card {
  background: rgba(243, 226, 189, 0.92);
  border: 1px solid #b79647;
  border-radius: 4px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.home-card-full { width: 100%; }
.home-card-head {
  padding: 10px 16px;
  border-bottom: 1px solid #c9a86a;
  background: linear-gradient(180deg, rgba(155, 113, 63, 0.25) 0%, rgba(155, 113, 63, 0.10) 100%);
}
.home-card-head h3 {
  margin: 0;
  font-size: 15px;
  color: #7b1300;
  font-weight: bold;
}
.home-card-body {
  padding: 14px 18px;
  color: #4a1e00;
  font-size: 13px;
  line-height: 1.55;
}
.home-card-body p { margin: 0 0 8px; }
.home-card-body p:last-child { margin-bottom: 0; }
.home-card-body strong { color: #7b1300; }
.home-card-body--video { padding: 8px; }
.home-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.home-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-screens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.home-screens a {
  display: block;
  border: 1px solid #b79647;
  overflow: hidden;
  transition: transform 0.2s;
}
.home-screens a:hover { transform: scale(1.04); }
.home-screens img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.home-features-title {
  color: #7b1300;
  font-size: 14px;
  font-weight: bold;
  margin: 16px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #c9a86a;
}
.home-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-features li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: #4a1e00;
}
.home-features li::before {
  content: '►';
  position: absolute;
  left: 0;
  top: 6px;
  color: #c9a86a;
  font-size: 10px;
}
.home-features li strong { color: #7b1300; }
.home-motto {
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed #b79647;
  color: #7b1300;
}

@media (max-width: 768px) {
  .home-screens { grid-template-columns: repeat(2, 1fr); }
}