/* 3 kolonlu grid wrapper */
.infoGrid {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* Satırlar */
.infoRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Bir satır beyaz, bir satır peach */
.infoRow:nth-child(odd) {
  background-color: #fff0e9;
}

.infoRow:nth-child(even) {
  background-color: #ffffff; /* standard peach */
}

/* Hücreler */
.infoCell {
  padding: 10px 10px;
  border-right: 1px solid #e5e7eb;
}

.infoCell:last-child {
  border-right: none;
}

.infoCell h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.infoCell p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .infoRow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .infoRow {
    grid-template-columns: 1fr;
  }

  .infoCell {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .infoCell:last-child {
    border-bottom: none;
  }
}
.countryInline {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.countryInline:hover {
  opacity: 0.85;
}
.countryFlag {
  width: 36px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.countryName {
  font-weight: 600;
  font-size: 15px;
  color: var(--text, #111827);
  line-height: 1;
}
