/* General Article Styling */
article {
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

article h1 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.date {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 20px;
}

/* Layout for Text and Image */
.content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.text-column {
    flex: 2;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.text-column p {
    margin-bottom: 15px;
}

.text-column strong {
    color: #ff5500;
    font-weight: bold;
}

.text-column a {
    color: #ff5500;
    text-decoration: underline;
    transition: color 0.3s;
}

.text-column a:hover {
    color: #004499;
}

.text-column ul {
    list-style-type: disc;  /* Default bullet marker */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 40px;     /* Default indent */
  }
  .text-column ul li::marker {
    color: #ff5500;         /* Your custom bullet color */
  }

/* Featured Image Styling */
.featured-image {
    flex: 1;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

article#venusaur-drop-event .text-column img {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 20px auto;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

/* Footer Styling */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f9f9f9;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .featured-image {
        max-width: 100%;
        margin: 0 auto 20px;
    }

    article {
        padding: 15px;
    }

    article h1 {
        font-size: 24px;
    }

    .text-column p {
        font-size: 14px;
    }
}
