.vcw-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.05);
}

.vcw-row-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vcw-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #0f766e;
    color: #ffffff;
    border: 1px solid #0f766e;
}

.vcw-icon-inner {
    font-size: 18px;
    line-height: 1;
    color: inherit;
}

.vcw-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vcw-meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vcw-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: #d0f5f0;
    color: #0f766e;
    font-size: 12px;
    font-weight: 600;
}

.vcw-duration {
    font-size: 13px;
    color: #6b7280;
}

.vcw-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.vcw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #0f766e;
    background: #0f766e;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.vcw-btn:hover {
    background: #0d5f58;
    border-color: #0d5f58;
}

/* Popup */
.vcw-modal[hidden] {
    display: none;
}

.vcw-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.vcw-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
}

.vcw-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    z-index: 9999;
}

.vcw-modal-iframe-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.vcw-modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vcw-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}
