:root {
    --wpcm-bg-dark: #1a1a1a;
    --wpcm-bg-secondary: #2a2a2a;
    --wpcm-accent-red: #e53e3e;
    --wpcm-text-white: #ffffff;
    --wpcm-text-gray: #b0b0b0;
    --wpcm-text-muted: #808080;
    --wpcm-border-gray: #404040;
    --wpcm-hover-bg: #333333;
    --wpcm-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wpcm-news-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wpcm-news-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--wpcm-bg-dark);
    overflow: hidden;
    font-family: var(--wpcm-font-family);
}

.wpcm-main-story {
    width: 100%;
    background-color: var(--wpcm-bg-dark);
}

.wpcm-main-content {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.wpcm-story-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--wpcm-bg-dark);
}

.wpcm-main-headline {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--wpcm-text-white);
}

.wpcm-main-headline a {
    color: var(--wpcm-text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wpcm-main-headline a:hover {
    color: var(--wpcm-text-gray);
}

.story-author {
    font-size: 11px;
    font-weight: bold;
    color: var(--wpcm-text-gray);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wpcm-story-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--wpcm-text-gray);
}

.wpcm-story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--wpcm-bg-secondary);
    min-height: 300px;
}

.main-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.main-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-link:hover .main-story-img {
    transform: scale(1.02);
}

.wpcm-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--wpcm-bg-secondary);
    color: var(--wpcm-text-muted);
    font-size: 14px;
    border: 2px dashed var(--wpcm-border-gray);
}

.wpcm-no-posts {
    padding: 40px;
    text-align: center;
    background-color: var(--wpcm-bg-dark);
    color: var(--wpcm-text-gray);
    border-radius: 8px;
    border: 1px solid var(--wpcm-border-gray);
}

.wpcm-secondary-stories {
    display: flex;
    background-color: var(--wpcm-bg-dark);
    border-top: 1px solid var(--wpcm-border-gray);
}

.wpcm-story-card {
    flex: 1;
    padding: 20px;
    background-color: var(--wpcm-bg-secondary);
    border-right: 1px solid var(--wpcm-border-gray);
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wpcm-story-card:last-child {
    border-right: none;
}

.wpcm-story-card:hover {
    background-color: var(--wpcm-hover-bg);
}

.wpcm-story-card.active {
    background-color: var(--wpcm-hover-bg);
}

.story-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    color: var(--wpcm-text-white);
    margin: 0;
}

.story-title a {
    color: var(--wpcm-text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-title a:hover {
    color: var(--wpcm-text-gray);
}

@media (max-width: 768px) {
    .wpcm-main-content {
        flex-direction: column;
    }
    
    .wpcm-story-info {
        order: 2;
        padding: 20px;
    }
    
    .wpcm-story-image {
        order: 1;
        height: 250px;
    }
    
    .wpcm-main-headline {
        font-size: 28px;
    }
    
    .wpcm-secondary-stories {
        flex-direction: column;
    }
    
    .wpcm-story-card {
        border-right: none;
        border-bottom: 1px solid var(--wpcm-border-gray);
    }
}
