.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.section-title {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.powered-by {
    color: #999;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.powered-by::before {
    content: "⚡";
    font-size: 14px;
}

.content-grid {
    display: grid;
    gap: 20px;
}

.single-content-centered {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.dual-content {
    grid-template-columns: 1fr 1fr;
}

.content-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Media container styles */
.card-media {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button-video {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.play-button-video:hover {
    transform: scale(1.1);
    background: #FFD700;
    color: #000;
}

/* Image play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFD700;
    color: black;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
    content: "▶";
    margin-left: 2px;
}

.card-content {
    padding: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #4285f4;
}

.more-link {
    color: #4285f4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.more-link:hover {
    text-decoration: underline;
    color: #3367d6;
}

.engagement-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    color: #666;
    font-size: 13px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.stat-item:hover {
    color: #333;
}

.stat-item::before {
    font-size: 14px;
}

.likes::before {
    content: "👍";
}

.comments::before {
    content: "💬";
}

.shares::before {
    content: "📤";
}

/* Responsive Design */
@media (max-width: 768px) {
    .dual-content {
        grid-template-columns: 1fr;
    }
    
    .single-content-centered {
        max-width: 100%;
    }
    
    .card-media {
        height: 160px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .engagement-stats {
        gap: 12px;
    }
    
    .play-button-video {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-grid {
        gap: 15px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .section-header {
        padding: 0 5px;
    }
    
    .card-media {
        height: 140px;
    }
    
    .video-container video {
        width: 100%;
        height: 100%;
    }
}

@media (min-width:1024px){
	.custom-ads-section {
    width: 900px;
}
}
.custom-ads-section {
    margin: 35px auto;
}