.section-latest-news__row {
  display: block;
}

/* ============================
   Branch Card — Minimalist
   ============================ */

.branch-card__inner {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.branch-card__inner:hover {
  border-color: var(--primary-red, rgba(182, 55, 52, 1));
  box-shadow: 0 4px 16px rgba(182, 55, 52, 0.1);
}

/* Title */
.branch-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* Info row */
.branch-card__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  text-decoration: none;
  color: #555;
  font-size: 0.875rem;
  line-height: 1.5;
}

.branch-card__row span {
  word-break: break-word;
}

/* SVG icon */
.branch-card__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  color: var(--primary-red, rgba(182, 55, 52, 1));
  fill: currentColor;
}

/* Phones section */
.branch-card__phones {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* Phone link hover */
.branch-card__phone {
  transition: color 0.2s ease;
}

.branch-card__phone:hover {
  color: var(--primary-red-hover, rgba(145, 23, 20, 1));
}