/* Social Media Privacy Embed Styles */

.smpe-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

.smpe-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.smpe-placeholder:hover {
    opacity: 0.9;
}

.smpe-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.smpe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.smpe-video-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: inherit;
    line-height: 1.4;
    max-width: 90%;
}

.smpe-load-button {
    background-color: #dc3232;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: inherit;
}

.smpe-load-button:hover {
    background-color: #b52727;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.smpe-load-button:active {
    transform: translateY(0);
}

.smpe-privacy-link {
    margin-top: 10px;
}

.smpe-privacy-link a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-decoration: underline;
    font-family: inherit;
}

.smpe-privacy-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

.smpe-embed-container {
    width: 100%;
    margin: 20px 0;
}

.smpe-embed-container iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .smpe-load-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .smpe-privacy-link a {
        font-size: 12px;
    }
    
    .smpe-video-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

/* Twitter-spezifische Anpassungen */
.smpe-wrapper[data-platform="twitter"] .smpe-placeholder {
    padding-bottom: 0;
    min-height: 200px;
}

/* Vimeo-spezifische Anpassungen */
.smpe-wrapper[data-platform="vimeo"] .smpe-placeholder {
    padding-bottom: 56.25%;
}

/* YouTube-spezifische Anpassungen */
.smpe-wrapper[data-platform="youtube"] .smpe-placeholder {
    padding-bottom: 56.25%;
}

