.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 280px;
  border-left: 2px solid rgba(239, 131, 84, 0.2);
  transition: border-left-color 0.2s ease;
}

.experience-card:hover {
  border-left-color: var(--accent);
}

.exp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.exp-title {
  display: grid;
  gap: 0.15rem;
}

.exp-title a {
  color: inherit;
  text-decoration: none;
}

.exp-company {
  font-size: clamp(0.96rem, 0.75vw + 0.72rem, 1.18rem);
  letter-spacing: 0.07em;
  line-height: 1.08;
  color: var(--text);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.exp-company-featured {
  font-size: clamp(1rem, 1.1vw + 0.65rem, 1.35rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.exp-role {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.exp-logo {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.exp-logo-lg {
  max-height: 54px;
}

.exp-logo-havelsan {
  max-height: 68px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.1rem;
}

.stack-tags span {
  display: inline-flex;
  align-items: center;
  white-space: normal;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--accent-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.34rem 0.56rem;
  background: rgba(0, 0, 0, 0.14);
}

.tag-icon {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  border-radius: 50%;
  margin-right: 0.35rem;
  flex-shrink: 0;
}

.meta {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.meta-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.36rem;
}

.meta-location {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
}

.meta-location svg {
  width: 0.78rem;
  height: 0.78rem;
  fill: var(--accent-2);
}
