/* Premium Welcome Card */
.premium-welcome {
  background: transparent;
  border-radius: 16px;
}

.welcome-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.welcome-name {
  font-size: 22px !important;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.welcome-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.welcome-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.welcome-info-item svg {
  flex-shrink: 0;
  color: #999;
  margin-top: 2px;
}

.welcome-info-item label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .premium-welcome {
    padding: 0;
    border-radius: 12px;
  }

  .welcome-name {
    font-size: 18px !important;
  }
}

/* Premium Avantajları - Wrapper & Cards */
.premium-wrapper {
  overflow: hidden;
  margin-top: 20px;
}

/* Hero alanı: yazı arkada, kutu sağda */
.premium-hero {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.premium-box {
  width: 620px;
  max-width: 55%;
  z-index: 2;
}

/* Başlık */
.premium-section {
  position: relative;
  z-index: 1;
}

.premium-section h2 {
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #222;
}

/* Kartlar - Container */
.premium-cards {
  padding-bottom: 4px;
}

/* Kartlar - Track */
.premium-cards-track {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Desktop: hide duplicate cards */
.premium-cards .card.card-duplicate {
  display: none;
}

.premium-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 14px 22px;
  min-width: 0;
  max-width: none;
  flex: 1 1 0;
  min-height: 180px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: none;
  position: relative;
  overflow: visible;
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.premium-cards .card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent, #ccc);
}

.card-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.premium-cards .card p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 600;
}

/* Mobil - Marquee aktif */
@media (max-width: 600px) {
  .premium-cards {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .premium-cards-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    will-change: transform;
  }
  /* Show duplicate cards for seamless loop */
  .premium-cards .card.card-duplicate {
    display: flex;
  }
  .premium-cards .card {
    min-width: 130px;
    max-width: 130px;
    padding: 16px 10px 12px;
  }
  .card-icon {
    width: 48px;
    height: 48px;
  }
  .premium-cards .card p {
    font-size: 13px;
  }
  .premium-hero {
    justify-content: center;
  }
  .premium-box {
    width: 600px;
    max-width: 85%;
  }
}

/* ========================================
   Premium Kampanyaları - Privileges Grid
   ======================================== */
.premium-privileges {
  margin-top: 28px;
}

.premium-privileges h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 16px;
}

.privileges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 14px;
}

.privilege-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: stretch;
  padding: 0;
  gap: 0;
  min-height: 140px;
  overflow: hidden;
  /* Scroll animation: start hidden */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.privilege-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: hafif büyüme + gölge */
.privilege-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.privilege-card.visible:hover {
  transform: translateY(-2px);
}

.privilege-img {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 6px;
}

.privilege-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.privilege-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.privilege-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
  line-height: 1.3;
}

.privilege-text p {
  font-size: 11.5px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Son kart desktop'ta tam genişlik + tıklanabilir */
.privilege-card:last-child {
  grid-column: 1 / -1;
  cursor: pointer;
  min-height: 240px;
}

.privilege-card:last-child .privilege-img {
  flex: 0 0 25%;
  max-width: 25%;
}

.privilege-card:last-child .privilege-text {
  flex: 0 0 75%;
  max-width: 75%;
  display: flex;
  flex-direction: column;
}

.privilege-card:last-child .privilege-brands {
  margin-top: 10px;
  flex: 1;
  display: flex;
  align-items: center;
}

.privilege-details-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: #7bcbd4;
  font-weight: 600;
  margin-top: 8px;
  padding: 6px 14px 6px 16px;
  border: 1.5px solid #7bcbd4;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privilege-details-hint-sm {
  font-size: 10px;
  padding: 4px 10px 4px 12px;
  margin-top: auto;
}

.privilege-details-hint svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privilege-card:last-child:hover .privilege-details-hint,
.privilege-card[data-drawer-tab]:hover .privilege-details-hint {
  background: #7bcbd4;
  color: #fff;
  border-color: #7bcbd4;
}

.privilege-card:last-child:hover .privilege-details-hint svg,
.privilege-card[data-drawer-tab]:hover .privilege-details-hint svg {
  transform: translateX(2px);
  stroke: #fff;
}

/* Brand logos strip */
.privilege-brands {
  display: flex;
  align-items: stretch;
  margin-top: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.privilege-brands-mobile {
  display: none;
}

.privilege-brands img {
  flex: 1;
  height: 40px;
  object-fit: contain;
  padding: 4px 8px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.privilege-brands img:not(:last-child) {
  border-right: 1px solid #222;
}

.privilege-brands img:hover {
  opacity: 1;
}

/* Mobil - tek sütun */
@media (max-width: 600px) {
  .privileges-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr auto;
  }

  .privilege-card {
    min-height: 120px;
  }

  .privilege-img {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .privilege-img img {
    object-position: 60% center;
  }

  .privilege-card:nth-child(3) .privilege-img img,
  .privilege-card[data-drawer-tab="mubi"] .privilege-img img {
    object-position: center center;
  }

  .privilege-text {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .privilege-text h3 {
    font-size: 14px;
  }

  .privilege-text p {
    font-size: 12px;
  }

  /* Marka logoları 2x2 grid */
  .privilege-brands img {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
  }

  .privilege-brands img:not(:last-child) {
    border-right: none;
  }

  .privilege-card:last-child .privilege-img {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .privilege-card:last-child .privilege-text {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .privilege-card:last-child {
    flex-wrap: wrap;
  }

  .privilege-brands-desktop {
    display: none !important;
  }

  .privilege-brands-mobile {
    display: flex !important;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 8px 12px 12px;
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }

  .privilege-details-hint {
    font-size: 10px;
    padding: 4px 10px 4px 12px;
    margin-top: 12px;
  }

  .privilege-brands-mobile img {
    flex: 1;
    height: 32px;
  }
}

/* ========================================
   Drawer Panel (sağdan açılan)
   ======================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease, backdrop-filter 0.55s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 520px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.drawer-panel.open {
  transform: translateX(0);
}

/* Closing state: slightly faster ease-in for snappy close */
.drawer-panel.closing {
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 1, 1);
}

/* Staggered child animations on open */
.drawer-panel .drawer-header,
.drawer-panel .drawer-tabs,
.drawer-panel .drawer-content {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.drawer-panel.open .drawer-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.drawer-panel.open .drawer-tabs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.drawer-panel.open .drawer-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Reset delays on close so children disappear immediately */
.drawer-panel:not(.open) .drawer-header,
.drawer-panel:not(.open) .drawer-tabs,
.drawer-panel:not(.open) .drawer-content {
  transition-delay: 0s;
  transition-duration: 0.2s;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 12px;
}

.drawer-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #222;
  flex: 1;
  text-align: center;
}

.drawer-header-spacer {
  width: 36px;
  flex-shrink: 0;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ededed;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.drawer-close:hover {
  background: #ddd;
  color: #222;
}

/* Tabs - modern pill style with logos */
.drawer-tabs {
  display: flex;
  padding: 16px 24px 12px;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.drawer-tab img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.drawer-tab:hover {
  background: #eee;
  transform: scale(1.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.drawer-tab:hover img {
  opacity: 0.9;
}

.drawer-tab.active {
  background: #fff;
  border-color: #7bcbd4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: scale(1);
}

.drawer-tab.active img {
  opacity: 1;
}

/* Tab content */
.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  position: relative;
}

.drawer-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.drawer-tab-content.active {
  display: block;
  animation: tabFadeIn 0.35s ease forwards;
}

.drawer-tab-content.tab-exiting {
  display: block;
  animation: tabFadeOut 0.2s ease forwards;
}

.drawer-tab-content a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}

.drawer-tab-content a:hover {
  color: #000;
  text-decoration: none;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.drawer-tab-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.drawer-campaign-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.drawer-section {
  margin-bottom: 20px;
}

.drawer-section h5 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px;
}

.drawer-section ul,
.drawer-section ol {
  padding-left: 18px;
  margin: 0 0 12px;
}

.drawer-section li {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 6px;
}

.drawer-section ol li {
  color: #333;
}

.drawer-info-note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.drawer-info-note a {
  color: #222;
  font-weight: 600;
}

.drawer-promo-btn {
  width: 100%;
  padding: 16px 20px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.4s ease, border-style 0.4s ease, background 0.4s ease;
  outline: none;
  overflow: hidden;
}

.drawer-promo-btn:hover {
  border-color: #999;
  background: #f3f3f3;
}

.drawer-promo-btn.premium-activate-btn {
  border: 2px solid #7bcbd4;
  background: #7bcbd4;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.drawer-promo-btn.premium-activate-btn:hover {
  background: #69b8c1;
  border-color: #69b8c1;
}

.drawer-promo-btn.premium-activate-btn .promo-btn-label {
  color: #fff;
  font-weight: 700;
}

/* Label - "Kampanya Kodunu Göster" */
.drawer-promo-btn .promo-btn-label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer-promo-btn.revealed .promo-btn-label {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Code text - hidden initially, scratch reveal via clip-path */
.drawer-promo-btn .promo-btn-code {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

/* Copy icon - hidden initially */
.drawer-promo-btn .promo-btn-copy,
.drawer-promo-btn .promo-btn-check {
  margin-left: 10px;
  flex-shrink: 0;
  color: #888;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.drawer-promo-btn .promo-btn-check {
  color: #7bcbd4;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-left: -16px; /* overlap exactly on top of copy icon */
}

/* Revealed state */
.drawer-promo-btn.revealed {
  border-style: solid;
  border-width: 1px;
  border-color: #bbb;
  background: #fff;
  cursor: pointer;
}

.drawer-promo-btn.revealed .promo-btn-label {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.drawer-promo-btn.revealed .promo-btn-code {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  animation: scratchReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.15s;
}

.drawer-promo-btn.revealed .promo-btn-copy {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition-delay: 0.8s;
}

@keyframes scratchReveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

/* Brief check icon after copy */
.drawer-promo-btn.just-copied .promo-btn-copy {
  opacity: 0;
  transform: scale(0.5);
  transition-delay: 0s;
}

.drawer-promo-btn.just-copied .promo-btn-check {
  opacity: 1;
  transform: scale(1);
}

.drawer-cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  flex: 1;
  text-align: center;
}

.drawer-cta-primary {
  background: #7bcbd4;
  color: #fff !important;
}

.drawer-cta-primary:hover {
  background: #5fb8c2;
  color: #fff !important;
  text-decoration: none;
}

/* Mobil drawer tam genişlik */
@media (max-width: 600px) {
  .drawer-panel {
    width: 100vw;
    max-width: 100vw;
  }

  .drawer-tab {
    padding: 8px 6px;
    border-radius: 10px;
  }

  .drawer-tab img {
    height: 18px;
  }
}

/* Premium FAQ */
.premiumFAQ {
  padding: 0;
}

.premiumFAQ .panel {
  border: none;
  box-shadow: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
}

.premiumFAQ .panel-heading {
  background: transparent !important;
  border: none;
  padding: 14px 0;
  border-radius: 12px;
  transition: background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

@media (hover: hover) {
  .premiumFAQ .panel-heading:hover {
    background: #f8f8f8 !important;
    padding: 14px 12px;
  }
}

.premiumFAQ .panel-heading:has(a:not(.collapsed)) {
  background: #fff !important;
  border-radius: 12px 12px 0 0;
  padding: 14px 12px;
}

.premiumFAQ .panel-heading .accordion-toggle:after {
  font-family: inherit !important;
  content: "\25BE" !important;
  color: #555 !important;
  font-size: 16px;
  margin-top: 0;
  margin-right: 0;
  transition: transform 0.35s ease, color 0.3s ease;
  display: inline-block;
  float: none;
  flex-shrink: 0;
  line-height: 1;
}

.premiumFAQ .panel-heading .accordion-toggle.collapsed:after {
  font-family: inherit !important;
  content: "\25BE" !important;
  color: #999 !important;
  margin-top: 0;
  margin-right: 0;
  transform: rotate(0deg);
}

.premiumFAQ .panel-heading .accordion-toggle:not(.collapsed):after {
  transform: rotate(180deg);
}

.premiumFAQ .panel-title {
  font-size: 14px;
}

.premiumFAQ .panel-title a {
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.premiumFAQ .panel-collapse {
  transition: none;
}

.premiumFAQ .panel-collapse.collapsing {
  transition: height 0.4s ease;
}

.premiumFAQ .panel-collapse .panel-body {
  background: #fff;
  border-top: none;
  padding: 0 12px 14px 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-8px);
  animation: faqFadeIn 0.35s ease 0.1s forwards;
}

.premiumFAQ .panel-collapse.collapse:not(.in) .panel-body {
  opacity: 0;
  transform: translateY(-8px);
  animation: none;
}

@keyframes faqFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premiumFAQ .panel-body .container-fluid {
  padding: 0;
}

.premiumFAQ h3.mt-2r {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #222;
  margin-bottom: 16px;
}

/* Status Banner */
.banner {
  text-align: center;
  margin-top: 15px;
}

.well.banner h2 {
  font-size: 24px;
  font-weight: 900;
  color: #222;
  line-height: 1.4;
}

.well.banner h3,
.well.banner p {
  font-size: 14px;
  font-weight: 400;
  color: #444343;
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 0;
  font-family: inherit;
}

.banner .btn-primary {
  background-color: #7bcbd4;
  border-color: #7bcbd4;
  box-shadow: none;
  margin-top: 5px;
}

.banner .btn-primary:hover,
.banner .btn-primary:focus,
.banner .btn-primary:active {
  background-color: #69b8c1;
  border-color: #69b8c1;
  box-shadow: none;
}

@media only screen and (max-width: 600px) {
  .banner .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .banner .d-flex .ml-1rem {
    margin-left: 0;
  }
  .banner .btn-primary {
    width: 100%;
    max-width: 280px;
  }
}

/* Premium Order Timeline */
.premium-order-timeline {
  margin: 40px 0;
  padding: 0;
}

.premium-order-timeline h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #333;
  text-align: left;
}

.timeline-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 16px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-gif {
  width: 180px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-gif img {
  width: 100%;
  height: auto;
}

.timeline-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .timeline-gif {
    width: 90px;
  }

  .timeline-label {
    font-size: 12px;
  }
}
