.fedomu-related {
    padding: var(--wp--preset--spacing--70) var(--wp--preset--spacing--60);
    background: var(--wp--preset--color--off-white);
    border-top: 1px solid rgba(10,10,10,0.06);
}
.fedomu-related__inner {
    max-width: 1400px;
    margin: 0 auto;
}
.fedomu-related__heading {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--wp--preset--color--boulevard-dark);
    margin: 0 0 1.5rem;
}
.fedomu-related__grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding-bottom: 0.5rem;
    position: relative;
    z-index: 0;
}
.fedomu-related__grid::-webkit-scrollbar { display: none; }
.fedomu-related__grid { scrollbar-width: none; }
@media (min-width: 768px) {
    .fedomu-related__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        touch-action: auto;
    }
}
.fedomu-related__card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg, var(--wp--preset--color--boulevard-blue));
    color: var(--card-text, var(--wp--preset--color--white));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
    width: min(280px, 75vw);
    min-width: min(280px, 75vw);
    flex-shrink: 0;
    scroll-snap-align: start;
}
@media (min-width: 768px) {
    .fedomu-related__card { width: auto; min-width: auto; flex-shrink: 1; }
}
.fedomu-related__card:hover,
.fedomu-related__card:focus-visible {
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.35);
    transform: translateY(-5px);
}
.fedomu-related__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--card-icon-bg, rgba(255,255,255,0.15));
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease-out;
}
.fedomu-related__card:hover .fedomu-related__card-icon,
.fedomu-related__card:focus-visible .fedomu-related__card-icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(255,255,255,0.25);
}
.fedomu-related__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}
.fedomu-related__card-desc {
    font-size: 0.8125rem;
    color: inherit;
    opacity: 0.75;
    margin: 0;
    line-height: 1.5;
}
.fedomu-related__card-arrow {
    color: inherit;
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.fedomu-related__card:hover .fedomu-related__card-arrow {
    opacity: 0.8;
    transform: translateX(0);
}
