/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main container for the magazine layout */
.magazine-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual article card */
.article-card {
    width: calc(50% - 10px); /* Adjust as needed */
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Article title */
.article-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Article content */
.article-content {
    font-size: 14px;
    line-height: 1.5;
}

section {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

