/**
 * Magazine Embed Styles
 */

.magazine-embed {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
    background: white;
}

.magazine-embed-edition {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.magazine-embed-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.embed-cover img,
.embed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.embed-content {
    padding: 30px;
}

.embed-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    font-weight: bold;
    margin-bottom: 5px;
}

.embed-content h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.embed-date,
.embed-edition {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.embed-category {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.embed-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.embed-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.embed-button {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 15px;
}

.embed-button:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .magazine-embed-edition,
    .magazine-embed-article {
        grid-template-columns: 1fr;
    }
    
    .embed-cover img,
    .embed-thumbnail img {
        height: 250px;
    }
}
