/* ==========================================================
 * brand.scss
 * Brand and logo display styles
 *
 * Author: Yann Gouffon, yann@antistatique.net
 * Date:   2014-04-28 17:17:40
 *
 * Copyright 2014 Federal Chancellery of Switzerland
 * Licensed under MIT
 =========================================================== */

.brand {
  float: left;
  width: 570px; // Fix float issue with Firefox

  @media only screen and (max-width: $screen-sm-max) {
    width: 470px;
  }

  img {
    max-width: 252px;
    height: auto;

    @media only screen and (max-width: $screen-sm-max) {
      max-height: 50px;
    }

    margin: 0;
    padding-right: 2em;
    border-right: 1px solid $gainsboro;
    float: left;
  }

  h1 {
    color: $black;
    font-weight: 700;
    font-size: 1em;
    max-width: 310px;

    line-height: 1.3;
    margin: 0;
    padding-left: 2.5em;
    float: left;

    @media only screen and (max-width: $screen-md-max) {
      font-size: 0.85em;
    }

    @media only screen and (max-width: $screen-sm-max) {
      max-width: 210px;
    }
  }

  &:hover {
    text-decoration: none;
  }
}
