/* TT POWER referans şeridi — renkler ve yazı tipleri mevcut site sınıflarından gelir. */
.reference-strip { padding-block: 24px; }
.reference-strip__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.reference-strip__heading h2 { margin: 0; }
.reference-strip__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 4px 8px;
    white-space: nowrap;
    cursor: pointer;
}
.reference-strip__toggle[hidden] { display: none; }
.reference-strip__toggle:hover { text-decoration: underline; }
.reference-strip__viewport { overflow-x: auto; }
.reference-strip__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    justify-content: center;
}
.reference-strip__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0 32px 0 0;
}
.reference-strip__item {
    display: flex;
    flex: 0 0 144px;
    width: 144px;
    height: 88px;
    align-items: center;
    justify-content: center;
}
.reference-strip__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px;
    text-align: center;
    overflow-wrap: anywhere;
}
.reference-strip__logo img { width: 100%; height: 64px; object-fit: contain; }
.reference-strip a:focus-visible, .reference-strip button:focus-visible { outline: 2px solid currentColor; outline-offset: -3px; }
.reference-strip.is-animated .reference-strip__viewport { overflow: hidden; }
.reference-strip.is-animated .reference-strip__track {
    min-width: 0;
    justify-content: flex-start;
    animation: reference-strip-scroll var(--reference-duration) linear infinite;
}
.reference-strip.is-paused .reference-strip__track { animation-play-state: paused; }
@media (hover: hover) {
    .reference-strip__viewport:hover .reference-strip__track { animation-play-state: paused; }
}
/* Klavyeyle gezinirken bütün asıl bağlantılar doğal kaydırma ile erişilebilir. */
.reference-strip.is-animated .reference-strip__viewport:focus-within { overflow-x: auto; }
.reference-strip.is-animated .reference-strip__viewport:focus-within .reference-strip__track { animation: none; }
.reference-strip__viewport:focus-within [data-reference-copy] { display: none; }
@keyframes reference-strip-scroll {
    to { transform: translateX(calc(-1 * var(--reference-distance))); }
}
@media (prefers-reduced-motion: reduce) {
    .reference-strip.is-animated .reference-strip__track { animation: none; }
    .reference-strip.is-animated .reference-strip__viewport { overflow-x: auto; }
    .reference-strip [data-reference-copy] { display: none; }
}
