/* ====== OGÓLNY UKŁAD ====== */
#elCmsPageWrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ====== SEKCJE ====== */
.cForumTitle {
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0 15px;
    border-left: 5px solid #ffb300;
    padding-left: 12px;
}

/* ====== LISTA GRUP ====== */
.ipsDataList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    padding: 0;
}

.ipsDataItem {
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 15px;
    list-style: none;
    transition: 0.25s ease;
}

.ipsDataItem:hover {
    transform: translateY(-4px);
    border-color: #ffb30055;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ====== IKONY ====== */
.ipsDataItem_icon {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffb300;
}

/* ====== TYTUŁY GRUP ====== */
.ipsDataItem_title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ====== TEKST ====== */
.ipsType_light {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.5;
}

/* ====== OBRAZKI RANG ====== */
.ipsDataItem img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 10px 0;
}

/* ====== LINKI W OPISACH ====== */
.ipsDataItem a {
    color: #ffb300;
    text-decoration: none;
    font-weight: 600;
}

.ipsDataItem a:hover {
    text-decoration: underline;
}

/* ====== REPUTACJA - BADGE ====== */
.waldek_odznaki_obrazek2 {
    width: 42px;
    height: 42px;
}

/* ====== BOXY REPUTACJI ====== */
.waldek_odznaki_wpis {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #2c2c2c;
}

/* ====== HOVER EFEKT REPUTACJI ====== */
.waldek_odznaki_wpis:hover {
    border-color: #ffffff22;
    background: #222;
}

/* ====== NAGŁÓWKI SEKCJI ====== */
h1, h2 {
    color: #ffffff;
}

/* ====== LISTY VIP / ADMIN ====== */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 6px;
}

/* ====== RESPONSYWNOŚĆ ====== */
@media (max-width: 768px) {
    .ipsDataList {
        grid-template-columns: 1fr;
    }

    #elCmsPageWrap {
        padding: 10px;
    }
}