@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,helvetica,Arial,sans-serif;
  }
}

@layer utilities {
  .visually-hidden { 
    @apply block absolute h-px w-px overflow-hidden whitespace-nowrap;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(1px);
            clip-path: inset(1px);
  }

  .clr-blue {
    color: #1daade;
  }

  .bg-clr-blue {
    background-color: #1daade;
  }
}

.article figure:first-of-type {
    display: none;
}
