.elementor-79003 .elementor-element.elementor-element-ff133cf{--display:flex;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}/* Start custom CSS for html, class: .elementor-element-80bce70 */:root {
  --color-main: #cf0062;
  --color-deep: #632643;
  --color-text: #101016CC;

  --pastel-pink: #ffe4f1;
  --pastel-yellow: #fff7d6;
  --pastel-blue: #e3f2ff;
  --pastel-lilac: #f2e9ff;
}

.about-page {
  font-family: "Nunito-Neu", sans-serif;
  color: var(--color-text);
  min-height: 100vh;
  padding: 30px 0 40px;

}

.about-hero {
  padding: 0 20px 30px;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: "Bello-SmCp", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--color-main);
  margin: 0 0 16px;
}

.about-hero-text {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 10px;
}

.about-main {
  padding: 0 20px;
}

.about-main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .about-main-grid {
    grid-template-columns: 1fr;
  }
}

.about-timeline-col {
  position: relative;
}


.about-story-header {
  margin-bottom: 20px;
}

.about-section-title {
  font-family: "Bello-SmCp", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  color: var(--color-main);
  margin: 0 0 8px;
}

.about-section-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 10px 0 10px;
}

.timeline-line {
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-main),
    var(--color-main) 10px,
    transparent 10px,
    transparent 18px
  );
  opacity: 0.8;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.timeline-year {
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pastel-yellow);
  border: 2px solid #101016CC;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-deep);
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  z-index: 1;
}

.timeline-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}

.timeline-card-title {
  font-family: "Bello-SmCp", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--color-deep);
}

.timeline-card-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Mobile Timeline Feintuning */
@media (max-width: 600px) {
  .timeline-line {
    left: 22px;
  }

  .timeline-year {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .timeline-card {
    padding: 8px 10px;
  }
}

.about-team-col {
  position: relative;
}

.about-team-inner {
  width: 100%;
  padding: 24px 18px 26px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 228, 241, 0.9),
    rgba(227, 242, 255, 0.9),
    rgba(255, 247, 214, 0.9)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-group {
  margin: 0 0 28px;
  padding: 16px 10px 6px;
  border-radius: 18px;
  position: relative;
}

.team-group::before {
  content: "✿";
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 1.2rem;
  opacity: 0.35;
  color: var(--color-main);
}

.team-group:last-child {
  margin-bottom: 0;
}

.team-group-header {
  margin-bottom: 14px;
}

.team-group-title {
  font-family: "Bello-SmCp", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 4px;
  color: var(--color-deep);
}

.team-group-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.team-members-single {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 1100px) {
  .team-members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .team-members-grid {
    grid-template-columns: 1fr;
  }
}

.team-member-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  border: 2px solid #1010161f;
  padding: 12px 12px 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.team-member-card h4{
    font-family: "Bello-SmCp", "Segoe UI", sans-serif;
    font-weight: 200;
}

.team-chibi-placeholder {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px dashed var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chibi-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-main);
}

.team-chibi-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.team-member-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 2px;
  color: var(--color-deep);
}

.team-member-role {
  font-size: 0.85rem;
  margin: 0 0 4px;
  color: var(--color-main);
  min-height: 2.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.team-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-main);
  color: var(--color-main);
}

.team-member-location {
  margin: 0 0 4px;
  min-height: 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-location-label {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 247, 214, 0.9);
  border: 1px solid var(--color-deep);
  color: var(--color-deep);
  white-space: nowrap;
}

.team-group-sales .team-location-label {
  background: rgba(255, 228, 241, 0.9);
  border-color: var(--color-main);
  color: var(--color-main);
}

.team-member-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  min-height: 4.5em;
}

.team-member-owner {
  max-width: 360px;
  margin: 0 auto;
}

.owner-extra {
  margin-top: 10px;
}

.owner-extra-text {
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.tattoo-studio-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid #1010161F;
  background: #FCF7BFAD;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cf0062 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tattoo-studio-btn:hover,
.tattoo-studio-btn:focus-visible {
  background: #FCF7BF;
  color: #ffffff;
  border-color: #CF00628C;
}/* End custom CSS */