    
    body {
    background-color: #f4f4f4;
    padding: 0;
    margin: 0;
    }
    
    .content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin: 80px 10%;
    }

.article {
    margin: 30px 0;
    width: -webkit-fill-available;
    width: -moz-available;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 40px;
}

.articleHead {
    text-align: center;
    padding: 10px 0;
}

.articleTitle {
    font-size: 2.4em;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-weight: 700;
}

.articleInfo {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 6px;
    width: -moz-available;
    width: -webkit-fill-available;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.articleInfo p {
    margin: 5px 0 2px 0;
    font-weight: 500;
}

.articleImage {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.imageCredit {
    font-size: 0.9em;
    color: gray;
    margin: 0 0 20px 0;
}

/* Main content area */
.articleContent {
    line-height: 1.8;
    font-size: 1.15em;
    color: #333;
}

.articleContent h3 {
    font-size: 1.8em;
    margin: 45px 0 20px;
    color: #4780B6;
    border-left: 4px solid #4780B6;
    padding-left: 15px;
}

.articleContent ul,
.articleContent ol {
    margin: 20px 0;
    padding-left: 30px;
}

.articleContent li {
    margin: 10px 0;
}

.articleContent p {
    margin: 18px 0;
}

/* Images inside content */
.articleContent .image {
    text-align: center;
    margin: 45px 0;
}

.articleContent .image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.articleContent .image p {
    font-size: 0.95em;
    color: #777;
    margin-top: 10px;
}

/* Play button link */
.play-button {
    display: inline-block;
    background: #4780B6;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.3s;
}

.play-button:hover {
    transform: translate(-2px, -3px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9);
}

/* Your existing adContainer styles – slightly improved */
.adContainer {
    margin: 45px 0;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    text-align: center;
}

.adContainer ad {
    display: block;
    text-align: center;
    margin: 20px auto;
    width: -webkit-fill-available;
    width: fill-available;
    max-width: 100%;
}

.adContainer p {
    position: absolute;
    right: 20px;
    bottom: -10px;
    padding: 0 12px !important;
    line-height: 1 !important;
    margin: 0;
    color: #888;
    background-color: white;
    font-size: 14px !important;
    font-family: Arial, sans-serif;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .article {
        margin: 10px;
        border-radius: 6px;
    }
    
    .articleHead {
        padding: 25px 15px 15px;
    }
    
    .articleTitle {
        font-size: 2em;
    }
    
    .articleContent {
        padding: 30px 20px;
        font-size: 1.1em;
    }
    
    .articleContent h3 {
        font-size: 1.6em;
    }
    
    .adContainer p {
        right: 10px;
        font-size: 13px !important;
    }
}