/* LinkedIn Resume Builder landing page
   Companion stylesheet for resume-score-marketing.css.
   Only defines elements unique to this page; everything else inherits. */

.linkedin-steps {
  padding: 72px 24px;
}

.linkedin-steps-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.linkedin-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 36px 0 28px;
}

.linkedin-step-card {
  position: relative;
  padding: 28px 22px 24px;
  background: #ffffff;
  border: 1px solid #d0daea;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(16, 36, 68, 0.04);
}

.linkedin-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.linkedin-step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #102444;
  margin: 0 0 8px;
  line-height: 1.3;
}

.linkedin-step-card p {
  margin: 0;
  color: #4b6590;
  font-size: 0.95rem;
  line-height: 1.55;
}

.linkedin-gif-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin: 0 auto 28px;
  max-width: 780px;
  background: repeating-linear-gradient(
    45deg,
    #eef2f8,
    #eef2f8 12px,
    #e3eaf3 12px,
    #e3eaf3 24px
  );
  border: 1px dashed #b8c4d6;
  border-radius: 12px;
  color: #6b7c97;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 24px;
}

.linkedin-steps-cta {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .linkedin-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .linkedin-gif-placeholder {
    min-height: 180px;
  }
}
