/* Company Header Styles */
.company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 24px;
}

.company-header__logo-box {
  width: 160px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.company-header__logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.company-header__url-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1.5px solid #d6d6d6;
  border-radius: 18px;
  font-size: 15px;
  color: #333;
  background: #fff;
}

.company-header__url-box svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.company-header__url-box svg path {
  stroke: #333;
}

.company-header__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.company-header__social:hover {
  opacity: 0.7;
}

.company-header__social img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Dark Mode */
body.dark .company-header__url-box {
  background: #fff;
  border-color: #d0d0d0;
  color: #000;
}

body.dark .company-header__url-box svg path {
  stroke: #000;
}
