
/* GA_HOME_SOCIAL_V1 */

.ga-social-home-wrap {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}

.ga-social-composer {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(22,28,40,.96), rgba(8,12,18,.96));
    box-shadow: 0 10px 40px rgba(0,0,0,.18);
}

.ga-social-composer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ga-social-composer-title {
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .72;
    font-weight: 700;
}

.ga-social-composer textarea {
    width: 100%;
    min-height: 130px;
    resize: vertical;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: #fff;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
}

.ga-social-composer textarea::placeholder {
    color: rgba(255,255,255,.48);
}

.ga-social-composer-actions {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ga-social-file-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ga-social-file-label {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    cursor: pointer;
    font-weight: 600;
}

.ga-social-file-name {
    font-size: 13px;
    opacity: .7;
}

.ga-social-btn {
    border: none;
    border-radius: 16px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: transform .15s ease, opacity .15s ease;
}

.ga-social-btn:hover {
    transform: translateY(-1px);
}

.ga-social-btn-primary {
    color: #071018;
    background: linear-gradient(135deg, #4ae3a4, #28d7ff);
}

.ga-social-btn-secondary {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
}

.ga-social-feed {
    display: grid;
    gap: 18px;
}

.ga-social-post {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(20,25,35,.96), rgba(7,10,16,.98));
    box-shadow: 0 12px 42px rgba(0,0,0,.20);
}

.ga-social-post-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 10px 18px;
}

.ga-social-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ga-social-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(40,215,255,.30), rgba(74,227,164,.24));
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
}

.ga-social-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ga-social-author-name {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.1;
}

.ga-social-author-meta {
    font-size: 12px;
    opacity: .65;
    margin-top: 3px;
}

.ga-social-post-body {
    padding: 0 18px 16px 18px;
}

.ga-social-post-text {
    white-space: pre-wrap;
    line-height: 1.55;
    font-size: 15px;
    color: rgba(255,255,255,.92);
}

.ga-social-post-media {
    margin-top: 14px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.ga-social-post-media img,
.ga-social-post-media video {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    background: #000;
}

.ga-social-post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 18px 16px 18px;
}

.ga-social-action-btn {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
}

.ga-social-action-btn.is-liked {
    color: #4ae3a4;
    border-color: rgba(74,227,164,.45);
    background: rgba(74,227,164,.08);
}

.ga-social-count {
    font-size: 13px;
    opacity: .72;
}

.ga-social-comments {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 14px 18px 18px 18px;
    display: grid;
    gap: 10px;
}

.ga-social-comment {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.ga-social-comment-name {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.ga-social-comment-text {
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-wrap;
    color: rgba(255,255,255,.90);
}

.ga-social-comment-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 6px;
}

.ga-social-comment-form input {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    color: #fff;
    padding: 12px 14px;
    outline: none;
}

.ga-social-empty {
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    opacity: .72;
    background: rgba(255,255,255,.02);
}

@media (max-width: 768px) {
    .ga-social-comment-form {
        grid-template-columns: 1fr;
    }
}
