/* === Perspectives Scroll Strip === */

.pg-scroll-section {
    padding: 60px 0 50px;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.pg-scroll-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.pg-scroll-diamond {
    color: #bbb;
    font-size: 14px;
}

.pg-scroll-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
}

.pg-scroll-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 auto 30px;
    max-width: 480px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Track wrapper clips the overflow */
.pg-scroll-track-wrap {
    overflow: hidden;
    width: 100%;
    cursor: default;
}

.pg-scroll-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: pg-scroll-left 40s linear infinite;
    will-change: transform;
}

.pg-scroll-track-wrap:hover .pg-scroll-track,
.pg-scroll-track-wrap:focus-within .pg-scroll-track {
    animation-play-state: paused;
}

@keyframes pg-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pg-scroll-item {
    display: block;
    flex-shrink: 0;
    width: 300px;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
}

.pg-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

.pg-scroll-item:hover img,
.pg-scroll-item:focus img {
    transform: scale(1.04);
    filter: brightness(0.88);
}

.pg-scroll-cta {
    margin-top: 32px;
}

/* === Shared Button Styles === */
.pg-btn {
    display: inline-block;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.pg-btn--outline {
    border: 1.5px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
}

.pg-btn--outline:hover {
    background: #1a1a1a;
    color: #fff;
}

.pg-btn--solid {
    background: #1a1a1a;
    color: #fff;
    border: 1.5px solid #1a1a1a;
}

.pg-btn--solid:hover {
    background: #333;
    border-color: #333;
}

@media (max-width: 600px) {
    .pg-scroll-item {
        width: 220px;
        height: 160px;
    }
    .pg-scroll-section {
        padding: 40px 0 36px;
    }
}
