/* Guide Étudier aux USA — France-USA-Net.Com */
.study-category-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

@media (min-width: 640px) {
  .study-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.study-category-card {
  border: 1px solid rgba(30, 58, 95, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(145deg, #eef4fc 0%, #ffffff 100%);
  color: #0f172a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.study-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 16, 32, 0.08);
}

.study-category-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #1e3a5f;
}

.study-category-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
}

.study-category-card a {
  color: #b45309;
  font-weight: 600;
}

.study-step-list {
  counter-reset: study-step;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.study-step-list > li {
  counter-increment: study-step;
  position: relative;
  padding: 0 0 16px 2.75rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

.study-step-list > li::before {
  content: counter(study-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #c41e3a);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-forms-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .study-forms-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.study-forms-grid .study-panel {
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.study-forms-grid .study-panel--light {
  background: linear-gradient(145deg, #eef4fc 0%, #ffffff 100%);
  color: #0f172a;
}

.study-forms-grid .study-panel--light h3 {
  margin-top: 0;
  color: #1e3a5f;
}

.study-forms-grid .study-panel--light li {
  color: #334155;
}

.study-forms-grid .study-panel--light a {
  color: #1d4ed8;
  font-weight: 600;
}

.study-forms-grid .study-panel--dark {
  background: linear-gradient(135deg, #1e3a5f 0%, #0b1020 100%);
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.14);
}

.study-forms-grid .study-panel--dark h3 {
  margin-top: 0;
  color: #f4d58a;
}

.study-forms-grid .study-panel--dark li {
  color: #e2e8f0;
}

.study-forms-grid .study-panel--dark a {
  color: #93c5fd;
  font-weight: 600;
}

.study-forms-grid ul {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}

.study-callout {
  margin-top: 14px;
  border-radius: 12px;
  padding: 14px 16px;
  border-left: 4px solid #c41e3a;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  color: #2c1810;
  font-size: 0.94rem;
  line-height: 1.6;
}

.study-callout strong {
  color: #1e3a5f;
}
