
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Lora:ital@1&display=swap');

.syn-a-section {
  padding: 100px 72px;
  background: #f5f9fc;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.syn-a-section *, .syn-a-section *::before, .syn-a-section *::after {
  box-sizing: border-box;
}
.syn-a-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(46,140,168,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.syn-a-inner { max-width: 1360px; margin: 0 auto; position: relative; }

.syn-a-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  gap: 32px; flex-wrap: wrap;
}
.syn-a-overtitle {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #2e8ca8; font-weight: 600; margin-bottom: 12px;
}
.syn-a-title {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300; color: #0f1e35;
  line-height: 1.15; margin: 0 0 10px 0;
  font-family: Georgia, 'Times New Roman', serif;
}
.syn-a-title em { font-style: italic; color: #2e8ca8; }
.syn-a-subtitle {
  font-size: 15px; color: #4a5e70;
  font-weight: 300; margin: 0; max-width: 480px;
}

.syn-a-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.syn-a-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: default;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 24px rgba(15,30,53,0.10);
  transition: box-shadow 0.4s, transform 0.4s;
}
.syn-a-card:hover {
  box-shadow: 0 20px 56px rgba(15,30,53,0.20);
  transform: translateY(-6px);
}
.syn-a-card.syn-a-tall { min-height: 400px; }

.syn-a-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.syn-a-card:hover .syn-a-img { transform: scale(1.07); }

.syn-a-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.45) 40%,
    rgba(10,22,40,0.10) 100%
  );
  transition: background 0.45s;
}
.syn-a-card:hover .syn-a-grad {
  background: linear-gradient(
    0deg,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.20) 100%
  );
}

.syn-a-num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: rgba(255,255,255,0.45);
  font-family: 'Outfit', sans-serif;
}

.syn-a-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 28px;
}

.syn-a-name {
  font-size: 20px; font-weight: 600;
  color: #ffffff; margin: 0 0 6px 0;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}
.syn-a-sub {
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #48b4d0; font-weight: 500;
  margin: 0 0 14px 0;
}
.syn-a-divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #2e8ca8, #48b4d0);
  border-radius: 2px; margin-bottom: 14px;
}
.syn-a-desc {
  font-size: 13px; color: rgba(200,220,232,0.90);
  line-height: 1.72; margin: 0 0 18px 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.45s ease;
}
.syn-a-card:hover .syn-a-desc { max-height: 160px; opacity: 1; }

.syn-a-ptags {
  display: flex; gap: 6px; flex-wrap: wrap;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease 0.05s, opacity 0.45s ease 0.05s;
}
.syn-a-card:hover .syn-a-ptags { max-height: 80px; opacity: 1; }
.syn-a-ptag {
  font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
  color: #48b4d0; background: rgba(46,140,168,0.18);
  border: 1px solid rgba(72,180,208,0.30);
  padding: 3px 10px; border-radius: 999px;
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 1100px) {
  .syn-a-section { padding: 72px 40px; }
  .syn-a-grid { grid-template-columns: repeat(2, 1fr); }
  .syn-a-card.syn-a-tall { min-height: 340px; }
}
@media (max-width: 680px) {
  .syn-a-section { padding: 56px 20px; }
  .syn-a-grid { grid-template-columns: 1fr; }
  .syn-a-header { flex-direction: column; align-items: flex-start; }
  .syn-a-card, .syn-a-card.syn-a-tall { min-height: 280px; }
  .syn-a-desc { max-height: 200px; opacity: 1; }
  .syn-a-ptags { max-height: 80px; opacity: 1; }
}
