/* ================================
   Components – Aero Velocity
   Phase 2 Social Redesign
================================ */

/* =================================
   Card – Phase 2 (Sharp Corners)
================================ */

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0; /* Removed rounding globally */
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

/* =================================
   Link Button – Phase 2
================================ */

.btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);

  width: 100%;
  padding: 14px 16px;

  background: var(--av-button-bg);
  color: var(--av-button-text);

  border: 2px solid transparent; /* prevents layout shift */
  border-radius: 0;              /* sharp corners */

  text-decoration: none;

  transition: 
    transform 140ms ease,
    border-color 140ms ease;
}

.btn-link:hover,
.btn-link:focus-visible {
  border-color: var(--av-focus); /* 2px white outline */
  transform: translateY(-1px);   /* keep lift effect */
}

/* =================================
   Internal Layout
================================ */

.btn-link__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.btn-link__icon {
  width: 34px;
  height: 34px;

  border-radius: 0; /* sharp icon container */

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  flex: 0 0 auto;
}

.btn-link__label {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.btn-link__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.btn-link__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-link__chev {
  color: rgba(255, 255, 255, 0.6);
  flex: 0 0 auto;
}