/* Vacancy Gallery */
.vacancy-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 2em;
  max-width: 900px;
  margin: auto;
}
.vacancy-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d0e0f0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
  height: 160px;
  margin-bottom: 2em;
}
.vacancy-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.vacancy-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
}

.vacancy-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vacancy-date {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}
.card-text {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.card-text h3 {
  font-size: 1.2em;
  margin: 0 0 0.5em;
}
.card-text p {
  font-size: 0.95em;
  color: #555;
  margin: 0;
}


.share-buttons {
  margin-top: 2em;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 0.95em;
  color: #444;
}

.share-buttons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.share-buttons img:hover {
  transform: scale(1.1);
}
.date-row {
  display: flex;
  gap: 2em;
  margin-bottom: 1em;
  font-size: 0.95em;
  color: #555;
}

.date-row time {
  white-space: nowrap;
}

.job-banner {
  max-width: 300px;
  margin: 30px auto;
  padding: 0;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.job-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
