/* ==========================================================
   SOCIAL CHANNEL CARDS — self-contained CTA block
   Matches the home (main.html) social cards exactly, but with
   independent class names + its own font import so it renders
   identically on any page, regardless of other stylesheets.
   ========================================================== */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@500,600,700&display=swap');

.social_section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}
.social_section .social_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.social_section .social_card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    background: #6C6BF5;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: 20px;
    padding: 26px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .2s ease, border-color .3s ease;
}
.social_section .social_card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s ease;
    background: radial-gradient(120% 160% at 100% 100%, rgba(255, 255, 255, .18), transparent 60%);
}
.social_section .social_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 60px -24px rgba(84, 83, 232, .55);
    border-color: rgba(255, 255, 255, .5);
}
.social_section .social_card:hover::after { opacity: 1; }

.social_section .sc_inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 36px; /* reserve room for the absolutely-pinned arrow */
}
.social_section .sc_icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(84, 83, 232, .35), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.social_section .sc_icon svg { width: 22px; height: 22px; }
.social_section .sc_text { text-align: left; min-width: 0; }
.social_section .sc_text .label {
    display: block;
    font-family: 'General Sans', 'Inter Display', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}
.social_section .sc_text .title {
    display: block;
    font-family: 'General Sans', 'Inter Display', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #fff;
}
.social_section .sc_arrow {
    position: absolute;
    z-index: 1;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    color: #fff;
}
.social_section .sc_arrow svg { width: 22px; height: 22px; }

@media (max-width: 1023px) {
    .social_section .social_wrap { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .social_section { padding: 56px 20px; }
    .social_section .sc_text .title { font-size: .86rem; }
}
