body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: #333;
}

.site-header {
  color: #333;
  padding: 1rem 0;
}
.site-header .logo a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}
.site-header .logo .logo-image {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .site-header .logo .logo-image {
    height: 25px;
  }
}
.site-header .main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.site-header .main-nav ul li {
  padding: 10px 0;
}
.site-header .main-nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.site-header .main-nav ul li a:hover {
  position: relative;
}
.site-header .main-nav ul li a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin-top: 8px;
  position: absolute;
}
.site-header__wrapper {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header > .container .newspaper-link a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-footer {
  background: #2E2A25;
  color: #fff;
  padding: 4rem 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

.site-footer__column {
  min-width: 0;
}

.site-footer__column--primary {
  width: 100%;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list a {
  color: inherit;
  text-decoration: none;
}

.site-footer__list a:hover {
  text-decoration: underline;
}

.site-footer__column h4 {
  margin-bottom: 0.2em;
}

.site-footer__column p {
  margin: 0 0 0 0;
  font-size: 14px;
  font-weight: 200;
}

.site-footer__logo-image {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.companies {
  --company-card-height: clamp(180px, 28vw, 170px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.company-card {
  position: relative;
  width: 100%;
  height: var(--company-card-height);
  display: grid;
  grid-template-columns: 1fr;
  align-items: self-start;
  gap: 16px;
  border-bottom: 1px solid #ddd;
  padding-top: 16px;
}
.company-card:hover {
  background: #f9f9f9;
}
.company-card:hover .company-card__arrow {
  transform: rotate(-45deg);
}

.company-card__overlay-link {
  font-size: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}

.company-card__overlay-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Elements */
.company-card__info {
  grid-column: 1; /* left 50% */
  padding-left: 16px;
}

.company-card__logo {
  grid-column: 2; /* right 50% */
  justify-self: end;
  padding-right: 16px;
}

.company-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.company-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #222;
  font-size: 14px;
  margin-bottom: 0;
  display: inline-block;
}
.company-card__link span {
  margin-right: 4px;
}

.company-card__name {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.company-card__logo-image {
  width: auto;
  height: 60px;
  max-width: 210px;
  object-fit: contain;
}

.company-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #222;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.company-card__tags {
  font-size: 14px;
  color: #222;
  margin: 0;
  margin-bottom: 2.5em;
}

.company-list {
  padding-bottom: 5em;
}

@media (max-width: 640px) {
  .companies {
    grid-template-columns: 1fr;
  }
}
.company-card--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .company-card--hero {
    grid-template-columns: 1fr;
  }
}
.company-card--hero .company-card__hero-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.company-card--hero .company-card__image img {
  max-height: 400px;
}

.company-header {
  margin: 20px 0;
  padding: 0;
}
.company-header .company-header__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
}
.company-header .company-header__back-link .icon-arrow-left {
  font-size: 16px;
  color: #333;
}

.company-main .company-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.company-main .company-card__link {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #222;
  font-size: 16px;
  margin-bottom: 0;
  text-decoration: none;
}
.company-main .company-card__link span {
  margin-right: 8px;
}

.company-presentation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-presentation img {
  max-width: 90%;
  width: 600px;
  height: auto;
  border-radius: 8px;
}
.company-presentation .company-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 100%;
  margin-top: 3em;
}
.company-presentation .company-content {
  padding-bottom: 5em;
}

.company-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.company-cta:hover {
  background-color: #000;
  color: #fff;
}

.mg-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
  padding-bottom: 7rem;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .mg-hero {
    height: auto;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.mg-hero__left {
  flex: 1;
}
.mg-hero__left h1 {
  font-size: 3.5em;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  .mg-hero__left h1 {
    font-size: 2.5em;
  }
}
.mg-hero__left p {
  font-size: 1.5em;
  margin-top: 0;
}
.mg-hero__left input {
  width: 100%;
  max-width: 400px;
}
.mg-hero__right {
  flex: 1;
}
.mg-hero__right .mg-hero__image {
  width: 100%;
  height: auto;
}
.mg-hero__right .mg-hero__image.desktop-only {
  display: block;
}
.mg-hero__right .mg-hero__image.desktop-only img {
  max-width: 90%;
}
@media screen and (max-width: 768px) {
  .mg-hero__right .mg-hero__image.desktop-only {
    display: none;
  }
}
.mg-hero__right .mg-hero__image.mobile-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .mg-hero__right .mg-hero__image.mobile-only {
    display: block;
  }
}

.mg-hero__filter {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mg-hero__filter {
    width: 300px;
  }
}
.mg-hero__filter.icon-search::before {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  color: #666;
}
.mg-hero__filter input {
  height: 30px;
  padding: 0 0.5em 0 2em;
  font-size: 1em;
}

/*# sourceMappingURL=style.css.map */
