.point-Card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point-Card-header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.point-card {
    /*height: 100vh;*/
    width: 100%;
    max-width: 600px;
    padding: 16px;
    background-color: white;
    border-radius: 18px;
}

.point-Card-video {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-3);
}

.point-Card-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
}

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

.point-Card-content {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-3);
}

