.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 980px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    min-height: 360px;
    align-items: center;
  }
}

.contact-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-title {
    font-size: 28px;
  }
}

.contact-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.85);
}

@media (max-width: 900px) {
  .contact-description {
    font-size: 16px;
  }
}

.contact-list {
  margin-top: 30px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row :is(i, .cg-icon) {
  color: var(--brand-red);
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.contact-row p,
.contact-row a {
  margin: 0;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 900px) {
  .contact-row p,
  .contact-row a {
    font-size: 16px;
  }
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 980px) {
  .contact-actions {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 320px;
  }
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 16px;
}

.contact-action :is(i, .cg-icon) {
  font-size: 21px;
}

.contact-action.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.contact-action.call {
  background: var(--brand-red);
  color: #ffffff;
}
