/* v96 footer-common.css
   Shared footer module.
   Rules here were exact matches across existing page CSS files.
*/

.rokana-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    background: transparent;
  }

.rokana-footer__inner {
    width: min(calc(100% - 96px), 1120px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }

.rokana-footer__logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex: none;
  }

.rokana-footer__logo img {
    width: 96px;
    max-width: 96px;
    height: auto;
    display: block;
  }

.rokana-footer__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-soft, var(--muted));
    font-size: 12.5px;
    letter-spacing: .02em;
  }

.rokana-footer__meta a,
  .rokana-footer__meta small,
  .rokana-footer__meta .sep {
    color: var(--ink-soft, var(--muted));
    font-size: 12.5px;
    line-height: 1.4;
    text-decoration: none;
    margin: 0;
  }

.rokana-footer__meta a:hover {
    color: var(--ink, var(--text));
  }
