

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
@media (max-width: 767px) {
  .links-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: var(--surface-1-bg);
  border: 1px solid var(--surface-border);
  box-shadow: var(--surface-shadow-2);
  text-decoration: none;
  transition: all 0.2s;
  color: inherit;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--surface-shadow-1);
  border-color: var(--accent);
}
.link-card-avatar,
.link-avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--surface-shadow-2);
}
.link-card-avatar img,
.link-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.link-card-avatar-placeholder,
.link-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-card-body {
  flex: 1;
  min-width: 0;
}
.link-card-name,
.link-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.link-card-desc,
.link-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.link-card-url,
.link-url {
  font-size: 11px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.link-card-arrow {
  color: var(--text-tertiary);
  font-size: 18px;
  transition: transform 0.2s;
}
.link-card:hover .link-card-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.apply-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.35);
  margin-top: var(--space-lg);
}
@media (max-width: 767px) {
  .apply-section {
    flex-direction: column;
    text-align: center;
  }
}
.apply-section-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.apply-section-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.apply-btn {
  flex-shrink: 0;
  padding: 12px 28px;
  background: white;
  color: #667eea;
  border-radius: var(--border-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.apply-btn:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.links-apply-card {
  background: var(--surface-2-bg);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 8px;
}
.links-apply-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.links-apply-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.links-apply-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.links-apply-item {
  display: flex;
  gap: 16px;
  font-size: 14px;
  align-items: baseline;
}
.links-apply-label {
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 70px;
  flex-shrink: 0;
}

.links-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.links-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 767px) {
  .links-feature-grid {
    grid-template-columns: 1fr;
  }
}
.links-feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
