.trs-apropos-hero {
background: var(--trs-offwhite);
text-align: center;
padding-top: var(--trs-space-2xl);
padding-bottom: var(--trs-space-sm);
} .trs-apropos-hero h1 {
margin: 0 auto;
max-width: 820px;
} .trs-apropos-gallery {
overflow: hidden;
background: var(--trs-offwhite);
padding: var(--trs-space-lg) 0;
}
.trs-apropos-gallery__track {
display: flex;
align-items: center;
gap: clamp(8px, 1.5vw, 16px);
width: max-content;
animation: trs-gallery-scroll 60s linear infinite;
will-change: transform;
}
.trs-apropos-gallery__track:hover { animation-play-state: paused; }
@keyframes trs-gallery-scroll {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.trs-apropos-gallery__item {
flex-shrink: 0;
border-radius: 2px;
overflow: hidden;
}
.trs-apropos-gallery__item img {
display: block;
height: auto;
max-height: 300px;
width: auto;
max-width: clamp(200px, 30vw, 480px);
object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
.trs-apropos-gallery__track { animation: none; }
} .trs-apropos-intro {
background: var(--trs-offwhite);
text-align: center;
padding-top: var(--trs-space-l);
}
.trs-apropos-intro__inner {
max-width: 720px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--trs-space-md);
} .trs-apropos-intro__signature {
font-family: var(--trs-font-nav);
font-size: var(--trs-fs-p-sm);
font-weight: 500;
color: var(--trs-black);
text-transform: uppercase;
letter-spacing: var(--trs-ls-wide);
margin: 0;
text-align: center;
} .trs-apropos-rejoindre { background: var(--trs-offwhite); }
.trs-apropos-rejoindre__header {
display: flex;
flex-direction: column;
gap: var(--trs-space-lg);
margin-bottom: var(--trs-space-xl);
}
.trs-apropos-rejoindre__left { display: flex; flex-direction: column; gap: var(--trs-space-sm); }
.trs-apropos-rejoindre__sep { display: none; }
.trs-apropos-rejoindre__right { } .trs-apropos-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--trs-space-md);
}
.trs-apropos-grid__card { display: block; }
.trs-apropos-grid__img {
position: relative;
aspect-ratio: 1 / 1;
overflow: hidden;
border-radius: 2px;
}
.trs-apropos-grid__img img {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover; display: block;
transition: transform 600ms var(--trs-ease);
}
.trs-apropos-grid__card:hover .trs-apropos-grid__img img {
transform: scale(1.04);
}
.trs-apropos-grid__overlay {
position: absolute; inset: 0;
background: rgba(28,28,28,.4);
z-index: 1;
}
.trs-apropos-grid__title {
position: absolute;
bottom: var(--trs-space-md);
left: var(--trs-space-md);
right: var(--trs-space-md);
font-family: var(--trs-font-nav);
font-size: var(--trs-fs-p-lg);
font-weight: 400;
color: var(--trs-offwhite);
line-height: var(--trs-lh-snug);
display: block;
text-transform: none;
z-index: 2;
}
.trs-services__text-inner p,
.trs-services__text-inner h2 {
color: var(--trs-offwhite);
}
.trs-apropos-cta .trs-services__image-col {
aspect-ratio: 2/1;
} @media (min-width: 640px) {
.trs-apropos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
.trs-apropos-gallery__item img { max-height: 550px; }
.trs-apropos-rejoindre__header {
flex-direction: row;
align-items: stretch;
gap: 0;
}
.trs-apropos-rejoindre__left  { flex: 1; }
.trs-apropos-rejoindre__sep   { display: block; }
.trs-apropos-rejoindre__right { flex: 1; }
.trs-apropos-grid { grid-template-columns: repeat(3, 1fr); }
}