/* ============================================================
   BFL ACCESS SYSTEM — bfl-access-system.css
   Version: 1.1 | Brave Feelings Lab
   ============================================================ */

.bfl-access-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 14px;
  padding: 0;
}

.bfl-access-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #14B8A6;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-family: sans-serif;
  opacity: 0.82;
}

.bfl-access-link:hover {
  color: #14B8A6;
  opacity: 1;
  text-decoration: underline;
}

.bfl-access-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.bfl-access-link:hover .bfl-access-arrow {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .bfl-access-link { font-size: 13px; }
}
