/* huagong 定制：页脚社交图标行（site_config social_links，后台"站点配置-社交/链接"维护）
   图标为内联 SVG（helpers/SocialIcons.php），插在页脚底部版权行上方独占一行居中。
   深色页脚（#SITE_FOOTER 背景 rgb(35,35,35)）上用半透明白圆底 + 白色图标，hover 主题绿。 */

.cmsSocialCol {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6px 0 14px;
}

.cmsSocialRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cmsSocialLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.cmsSocialLink svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cmsSocialLink:hover {
    background: var(--themeColor1, rgba(30, 122, 52, 1));
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
