#experience-detail {
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 72px);
  min-height: 100vh;
}

.experience-detail-inner {
  max-width: 900px;
  margin: 0 auto;
}

.experience-detail-header {
  margin-bottom: 60px;
}

.experience-detail-title-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  animation: slideInLeft 0.8s ease-out;
}

.experience-logo-large {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(23, 74, 58, 0.15);
}

.experience-logo-large.google-badge {
  background: transparent;
}

.experience-logo-large.youtube-badge {
  background: transparent;
}

.experience-logo-large.meta-badge {
  background: llinear-gradient(135deg, #0082FB 0%, #8B4FE8 100%);
}

.exp-logo-img-large {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.experience-detail-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

.experience-company {
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 1.5vw, 2.8rem);
  font-weight: 200;
  line-height: 1.15;
  color: var(--text);
}

.experience-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  padding: 30px;
  background: rgba(23, 74, 58, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(23, 74, 58, 0.1);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.meta-value {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.experience-detail-content {
  margin-top: 40px;
}

.experience-section {
  margin-bottom: 60px;
}


.experience-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--surface);
  position: relative;
  padding-bottom: 12px;
}

.experience-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.photo-subtitle {
  font-size: 0.52rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.85;
  margin-top: -8px;
  margin-bottom: 18px;
}

.photo-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(23, 74, 58, 0.3) transparent;
}

.photo-gallery::-webkit-scrollbar {
  height: 6px;
}

.photo-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.photo-gallery::-webkit-scrollbar-thumb {
  background: rgba(23, 74, 58, 0.3);
  border-radius: 3px;
}

.photo-item {
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.photo-item img {
  height: 200px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-item:hover img {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.photo-item figcaption {
  font-size: 12px;
  color: #888;
  text-align: center;
  font-style: italic;
  max-width: 180px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 80vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-content p,
#lightbox-caption {
  color: #e3e3e3;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  min-height: 20px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  cursor: pointer;
  padding: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.experience-section p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.skill-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(23, 74, 58, 0.05) 0%, rgba(13, 58, 43, 0.03) 100%);
  border: 1px solid rgba(23, 74, 58, 0.1);
  border-radius: 12px;
  opacity: 1;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(23, 74, 58, 0.1) 0%, rgba(13, 58, 43, 0.05) 100%);
  box-shadow: 0 12px 30px rgba(23, 74, 58, 0.15);
}

.skill-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.learning-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.learning-list li {
  padding: 16px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  border-bottom: 1px solid rgba(23, 74, 58, 0.05);
  opacity: 1;
}

.learning-list li:last-child {
  border-bottom: none;
}

.learning-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.learning-list strong {
  color: var(--surface);
  font-weight: 700;
}

.cta-section {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 2px solid rgba(23, 74, 58, 0.1);
}

.back-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.back-link:hover {
  color: var(--surface);
  transform: translateX(-5px);
}


html {
  scroll-behavior: smooth;
}