#elComment_6303504 .ipsResponsive_hidePhone,
#elComment_6303504 .ipsComment_author,
#elComment_6303504 .ipsComment_meta,
#elComment_6303504 .ipsType_reset,
.ipsPager, .ipsHr, .ipsPhotoPanel_small,
.cTopicPostArea, .ipsList_inline {
    display: none !important;
}

#elComment_6303504 {
    border-radius: 8px !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    background: transparent !important;
}

.org-container {
    max-width: 1327.5px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', 'Montserrat', Helvetica, sans-serif;
}

.org-container-inner {
    background-color: #17191f;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid #2b2b40;
}

.org-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: #d9c29e;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.org-description {
    margin-top: 10px;
    color: #a0aec0;
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9c29e, transparent);
    margin: 25px 0;
}

.org-block {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background-color: #262837;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    color: #dedede;
    margin: 25px 0;
    padding: 25px;
    border: 1px solid #2b2b40;
}

.org-subtitle {
    text-align: center;
    font-size: 24px;
    color: #d9c29e;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2b2b40;
    letter-spacing: 0.5px;
}

.org-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.org-card {
    background: linear-gradient(135deg, #2e2e4b 0%, #262837 100%);
    min-width: 280px;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: #dedede;
    margin: 0;
    padding: 0;
    border: 1px solid #3a3a55;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: cardAppear 0.5s ease-out forwards;
    opacity: 0;
}

.org-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
    border-color: #d9c29e;
}

.org-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d9c29e, #94beee, #d9c29e);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-card-content {
    padding: 25px 20px;
    position: relative;
    z-index: 1;
}

.org-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d9c29e, #b89e7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 15px rgba(217, 194, 158, 0.3);
}

.org-avatar span {
    color: #1e1e2e;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.org-director {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    color: #d9c29e;
    text-align: center;
    letter-spacing: 0.3px;
    word-break: break-word;
}

.org-name {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    color: #94beee;
    text-align: center;
    padding: 0 10px;
    word-break: break-word;
    font-style: italic;
}

.org-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d9c29e, transparent);
    margin: 15px auto;
}

.org-profile-link {
    display: inline-block;
    background: rgba(148, 190, 238, 0.1);
    color: #94beee;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 190, 238, 0.3);
    width: auto;
}

.org-profile-link:hover {
    background: #94beee;
    color: #1e1e2e;
    border-color: #94beee;
    transform: scale(1.05);
}

.org-card a {
    text-decoration: none !important;
    color: #dedede;
    display: block;
    text-align: center;
}

.org-empty {
    color: #8ba7bf;
    font-size: 16px;
    text-align: center;
    padding: 40px;
    background: rgba(43, 43, 64, 0.5);
    border-radius: 10px;
    width: 100%;
    font-style: italic;
}

@media (max-width: 992px) {
    .org-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .org-container-inner {
        padding: 20px;
    }

    .org-title {
        font-size: 28px;
    }

    .org-description {
        font-size: 14px;
    }

    .org-subtitle {
        font-size: 20px;
    }

    .org-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .org-director {
        font-size: 18px;
    }
    
    .org-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .org-title {
        font-size: 24px;
    }

    .org-subtitle {
        font-size: 18px;
    }

    .org-director {
        font-size: 17px;
    }
    
    .org-avatar {
        width: 50px;
        height: 50px;
    }
    
    .org-avatar span {
        font-size: 24px;
    }
}