.profile-site-actual-band {
    padding: 0 0 48px;
    background: #f4f7fb;
}

.profile-site-panel--actual {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(91, 126, 178, .15);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 44px rgba(17, 43, 74, .09);
}

.profile-site-panel--actual::before,
.profile-site-panel--editorial::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #42b9dc, #8067d1 55%, #e65aae);
    content: "";
}

.profile-site-panel--actual .profile-site-panel__head span {
    color: #245aa8;
}

.profile-site-panel--actual .profile-site-panel__head h2 {
    color: #101b31;
}

.profile-site-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 14px;
}

.profile-site-event {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid #dce6f0;
    border-left: 4px solid #8067d1;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f8fbff);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 43, 74, .06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.profile-site-event:hover {
    transform: translateY(-1px);
    border-color: rgba(65, 136, 245, .4);
    box-shadow: 0 16px 32px rgba(17, 43, 74, .1);
}

.profile-site-event__body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.profile-site-event__body small {
    color: #245aa8;
    font-size: .78rem;
    font-weight: 920;
}

.profile-site-event__body strong {
    color: #17243d;
    font-size: 1.08rem;
    line-height: 1.24;
}

.profile-site-event__body em {
    color: #5b687c;
    font-size: .9rem;
    font-style: normal;
    font-weight: 720;
    line-height: 1.45;
}

.profile-site-panel--editorial {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid rgba(91, 126, 178, .15);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 44px rgba(17, 43, 74, .09);
}

.profile-site-panel--editorial .profile-site-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 18px;
    align-items: start;
}

.profile-site-post-card {
    display: grid;
    align-self: start;
    overflow: hidden;
    border: 1px solid rgba(91, 126, 178, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 34px rgba(17, 43, 74, .11);
}

.profile-site-post-card__image {
    display: block;
    overflow: hidden;
    background: rgba(106, 214, 247, .12);
}

.profile-site-post-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.profile-site-post-card__body {
    display: grid;
    gap: 8px;
    padding: 13px;
}

.profile-site-post-card__body span {
    color: var(--pp-blue);
    font-size: .78rem;
    font-weight: 920;
}

.profile-site-post-card__body h3 {
    margin: 0;
    font-size: .98rem;
    line-height: 1.24;
}

.profile-site-post-card__body h3 a {
    color: var(--pp-ink);
    text-decoration: none;
}

.profile-site-post-card__body h3 a:hover {
    color: var(--pp-blue);
}

.profile-site-post-card__body p {
    margin: 0;
    color: var(--pp-muted);
    font-size: .9rem;
    font-weight: 720;
    line-height: 1.45;
}

@media (max-width: 560px) {
    .profile-site-event {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-site-event,
    .profile-site-share__button {
        transition: none !important;
    }

    .profile-site-event:hover,
    .profile-site-share__button:hover {
        transform: none;
    }
}
