.work-entry {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.company-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.work-details {
  flex: 1;
}

.company-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555555;
  margin-bottom: 2px;
}

.position {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.period {
  display: inline-block;
  font-size: 12px;
  color: #666666;
  margin-bottom: 10px;
}

.work-description p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 14px;
}

.work-description ul {
  margin: 0;
  padding-left: 20px;
}

.work-description ul li {
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 14px;
}

.resume-container {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.resume-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resume-button:hover {
  color: #333333;
  text-decoration: underline;
}

.resume-button svg {
  transition: transform 0.2s ease;
}

.resume-button:hover svg {
  transform: translateX(3px);
}
