/* ===== Разработка ===== */
.section-razrabotka{
  padding: 48px 0;
}

.section-razrabotka .heading-accent{ margin-bottom: var(--gap-xxl); }

.dev-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px){
  .dev-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .dev-grid{ grid-template-columns: 1fr; }
}

/* Карточка */
.dev-card{
  border-radius: 32px;
  border: 1.5px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px; /* общий паддинг */
}

/* Квадратная миниатюра */
.dev-card__thumb{
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}
.dev-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 18px;
}
.dev-card__ph{
  width: 100%;
  padding-bottom: 100%;
  margin: 0;
  border-radius: 12px;
  background: #e9eef4;
}

/* Тело карточки */
.dev-card__body{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

/* Дата + иконка */
.dev-card__date{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-yellow);  /* фирменный жёлтый из globals */
  font-weight: 700;      /* Bold */
  font-size: 20px;       /* 20px */
  line-height: 1.2;
}
.dev-card__date-ico{ display:inline-flex; line-height:0; }
.dev-card__date-ico svg{ width: 20px; height: 20px; }

/* Заголовок h3 — Regular 16px */
.dev-card__title{
  margin-bottom: var(--gap-lg);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #13223a;
}
.dev-card__title a{ color: inherit; text-decoration: none; }
.dev-card__title a:hover{ text-decoration: underline; }

/* Кнопка — outline на всю ширину */
.section-razrabotka .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-razrabotka .btn--outline{
  height: 56px;
  padding: 0 22px;
  border: 1.5px solid var(--brand-gray);
  border-radius: 999px;
  background: transparent;
  color: #2A5273;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.section-razrabotka .btn--outline:hover{
  background: var(--brand-yellow); /* primary из globals */
  border: 0;
  color: #000;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.section-razrabotka .btn__ico{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
}

.dev-card__cta{ margin-top: auto; }

@media (max-width:1024px){
.section-razrabotka .btn--outline {background-color:var(--brand-yellow);border:0;}
}