/* ======================================================
   THE CRAB GAMES — COLUNISTAS (TCG Premium v7.0)
   Identidade visual alinhada à homepage (2025)
====================================================== */

.tcg-colunistas-bar {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

/* ----------------------------------------------
   HEADER — Identidade TCG (linha verde à esquerda)
----------------------------------------------- */

.tcg-col-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
    padding-left: 6px;
    border-left: 4px solid #006633;
}

.tcg-col-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.tcg-col-header a {
    color: #006633;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.tcg-col-header a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------
   LINHA DE CARDS
----------------------------------------------- */

.tcg-col-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tcg-col-row::-webkit-scrollbar {
    display: none;
}

/* ----------------------------------------------
   CARD — Identidade TCG Premium
----------------------------------------------- */

.tcg-col-card {
    flex: 0 0 360px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tcg-col-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

/* Avatar circular */
.tcg-col-avatar {
    flex-shrink: 0;
    width: 82px;
    height: 82px;
}

.tcg-col-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #006633;
}

/* ----------------------------------------------
   TEXTO
----------------------------------------------- */

.tcg-col-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* nome da coluna — menor */
.tcg-col-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    opacity: 0.85;
    text-decoration: none;
}

.tcg-col-name:hover {
    color: #006633;
}

/* título do post — maior, editorial */
.tcg-col-latest {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.35;
}

.tcg-col-latest a {
    color: #006633;
    text-decoration: none;
}

.tcg-col-latest a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------
   DARK MODE — TCG IDENTIDADE
----------------------------------------------- */

body.dark-mode .tcg-col-header h3,
body[data-theme="dark"] .tcg-col-header h3 {
    color: #e7eef5;
}

body.dark-mode .tcg-col-card,
body[data-theme="dark"] .tcg-col-card {
    background: #1b1d22;
    border-color: rgba(255,255,255,0.08);
}

body.dark-mode .tcg-col-card:hover,
body[data-theme="dark"] .tcg-col-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

body.dark-mode .tcg-col-avatar img,
body[data-theme="dark"] .tcg-col-avatar img {
    border-color: #22dd88;
}

body.dark-mode .tcg-col-name,
body[data-theme="dark"] .tcg-col-name {
    color: #d5dde5;
}

body.dark-mode .tcg-col-latest,
body[data-theme="dark"] .tcg-col-latest {
    color: #ffffff;
}

body.dark-mode .tcg-col-latest a,
body[data-theme="dark"] .tcg-col-latest a {
    color: #22dd88 !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .tcg-col-card {
        flex: 0 0 280px;
    }
}
