.vc-accordion-wrapper {
    max-width: 600px;
    margin: 20px auto;
}

.vc-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}
vc-project-video
.vc-accordion-toggle {
    width: 100%;
    background: #f5f5f5;
    padding: 15px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.vc-accordion-panel {
    display: none;
    padding: 15px;
    background: #fff;
}

.vc-accordion-panel.active {
    display: block;
}


.vc-socials {
    display: flex;
    gap: 10px;
}

.vc-icon {
    width: 24px;
    height: 24px;
}
.vc-accordion-panel,
.vc-role-panel {
    display: none;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ccc;
}

.vc-accordion-panel.active,
.vc-role-panel.active {
    display: block;
}

.vc-role-toggle {
    width: 100%;
    background: #f0f0f0;
    padding: 10px;
    font-weight: bold;
    border: none;
    text-align: left;
    cursor: pointer;
    margin-top: 10px;
}

.vc-contributor-name {
    font-size: 16px;
    position: relative;
    margin: 5px 0;
    font-weight: 600;
    cursor: pointer;
}


.vc-socials {
    display: flex;
    gap: 8px;
    margin: 5px 0 10px;
}

.vc-contributor-name-wrapper {
    position: relative;
    display: inline-block;
}

.vc-avatar-preview {
    display: none;
    position: absolute;
    bottom: 100%;
    /* show above the name */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.vc-contributor-name-wrapper:hover .vc-avatar-preview {
    display: block;
}
.vc-contributor-hoverbox {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.vc-avatar-grow {
    width: 0;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.vc-contributor-hoverbox:hover .vc-avatar-grow {
    width: 40px;
    /* grows to this */
    opacity: 1;
}

.vc-contributor-name {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.vc-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.vc-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vc-video-overlay-container {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.vc-video-overlay-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vc-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    position: relative;
}
/*
.vc-play-button-wrapper {
    position: relative;
    z-index: 2;
}
*/
.vc-play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.vc-play-button {
    width: 60px;
    height: 60px;
    background: url("https://img.icons8.com/ios-filled/100/ffffff/play--v1.png") no-repeat center center;
    background-size: 40%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.vc-play-button:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}
.vc-video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Center play button for project videos */
.vc-project-video .vc-video-thumbnail {
    align-items: center;
    justify-content: center;
}

/*gallery*/
.vc-collage-grid {
    width: 100%;
    margin: 0 auto;
}

.vc-collage-item {
    margin-bottom: 20px;
    break-inside: avoid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vc-collage-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.vc-collage-wall {
    column-count: 6;
    column-gap: 0;
}

.vc-collage-tile {
    break-inside: avoid;
    margin-bottom: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vc-collage-tile img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}
.vc-collage-tile.active {
    transform: scale(1.05);
    z-index: 10;
}
.vc-hide-feature-image .edgtf-post-image {
    display: none;
}
.edgtf-post-image {
    display: none !important;
}

/* Short Description Styles */
.vc-short-description {
    margin: 20px 0;
    padding: 15px;
    background-color: inherit;
    border-left: none;
    font-size: 16px;
    line-height: 1.6;
}

.vc-short-description p {
    margin-bottom: 10px;
    text-align: center!important;
}

.vc-short-description p:last-child {
    margin-bottom: 0;
}

.vc-short-description h1,
.vc-short-description h2,
.vc-short-description h3,
.vc-short-description h4,
.vc-short-description h5,
.vc-short-description h6 {
    margin-top: 0;
    margin-bottom: 10px;
}

.vc-short-description ul,
.vc-short-description ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.vc-short-description blockquote {
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #fff;
    border-left: 3px solid #ccc;
    font-style: italic;
}

.vc-short-description a {
    color: #fff;
    text-decoration: underline;
}

.vc-short-description a:hover {
    text-decoration: none;
}
.vc-tab-text {
    font-size: 22px;
    font-family: Niagara Solid, Niagara;
}