/* ====== Company Single Page (Light Theme Only) ====== */


/* --- Company Header Section --- */
.company-contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

/* Company Logo */
.company-logo {
  width: 150px;
  height: 150px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.company-logo:hover img {
  transform: scale(1.05);
}

/* --- Company Info Section --- */
.company-data__content {
  flex: 1;
}

.company-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

/* Contact List */
.company-data__content--list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.company-data__content--list-item a {
  display: inline-block;
  font-size: 0.95rem;
  color: #0073aa;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s ease;
}

.company-data__content--list-item a:hover {
  color: #005177;
  text-decoration: underline;
}

/* --- Description Section --- */
.company-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.company-description p {
  margin-bottom: 1rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .company-contact-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-logo {
    width: 120px;
    height: 120px;
  }

  .company-title {
    font-size: 1.4rem;
  }

  .company-data__content--list {
    flex-direction: column;
    gap: 6px;
  }
}
