.pg-tips {
  --tip-bg: #352a22;
  --tip-accent: #d6483b;
  --tip-label: #e0a458;
  --tip-author: #e8c79e;
  --tip-text: #f1e8db;
  --tip-meta: #b39a7e;
  --tip-dot: rgba(216, 180, 140, .35);
  --tip-dot-on: #d8b48c;

  background: var(--tip-bg);
  border-left: 3px solid var(--tip-accent);
  padding: 16px 18px;
  border-radius: 10px;
  margin-top: 16px;
}

.pg-tips__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: .5px solid rgba(216, 180, 140, .28);
}

.pg-tips__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.pg-tips__avstack { display: flex; }

.pg-tips__av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: #7a5a3a;
  border: 2px solid var(--tip-bg);
  overflow: hidden;
  flex-shrink: 0;
}

.pg-tips__av:not(:first-child) { margin-left: -8px; }

.pg-tips__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-tips__label {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--tip-label);
}

.pg-tips__nav { display: flex; gap: 6px; }

.pg-tips__navbtn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: .5px solid rgba(216, 180, 140, .45);
  background: transparent;
  color: var(--tip-label);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-tips__navbtn:hover { background: rgba(216, 180, 140, .12); }

.pg-tips__viewport { overflow: hidden; }

.pg-tips__track {
  display: flex;
  transition: transform .3s ease;
  will-change: transform;
}

.pg-tips__slide {
  flex: 0 0 100%;
  display: flex;
  gap: 10px;
  box-sizing: border-box;
}

.pg-tips__tipav {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #7a5a3a;
  overflow: hidden;
}

.pg-tips__tipav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-tips__body { flex: 1; min-width: 0; }

.pg-tips__meta { margin: 0; font-size: 12px; }

.pg-tips__author { color: var(--tip-author); font-weight: 500; }

.pg-tips__role { color: var(--tip-meta); }

.pg-tips__text {
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--tip-text);
  margin: 2px 0 0;
  min-height: 62px;
}

.pg-tips__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.pg-tips__dots { display: flex; gap: 7px; }

.pg-tips__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tip-dot);
  border: 1px solid rgba(216, 180, 140, .45);
  padding: 0;
  cursor: pointer;
  transition: width .2s, background .2s;
}

.pg-tips__dot.is-on {
  width: 22px;
  border-radius: 5px;
  background: var(--tip-dot-on);
  border-color: var(--tip-dot-on);
}

.pg-tips__counter {
  font-size: 11px;
  color: var(--tip-meta);
  font-variant-numeric: tabular-nums;
}

.pg-tips__counter b { color: var(--tip-label); font-weight: 500; }

/* Hide arrows on mobile — swipe + dots handle navigation */
@media (max-width: 600px) {
  .pg-tips__nav { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pg-tips__track { transition: none; }
}
