/* =========================
   ARTICLE SECTIONS (Card Style)
========================= */
article {
    background-color: #1e293b;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
}

/* Headings */
h2 {
    color: #facc15;
    margin-bottom: 15px;
}

/* Paragraph spacing */
article p {
    margin-bottom: 15px;
}

/* Pseudo-element selector */
article p::first-letter {
    font-size: 150%;
    font-weight: bold;
    color: #facc15;
}

/* =========================
   TABLE STYLING
========================= */
table {
    width: 75%;
    margin: 30px auto;           /* centers table */
    border-collapse: collapse;
    background-color: #1e293b;
}

/* Caption */
caption {
    font-weight: bold;
    margin-bottom: 10px;
    color: #facc15;
}

/* Header cells */
th {
    background-color: #334155;
    color: #facc15;
    padding: 12px;
    text-align: left;
}

/* Data cells */
td {
    padding: 12px;
    border: 1px solid #334155;
}

/* Striped rows */
tbody tr:nth-child(even) {
    background-color: #273449;
}

/* =========================
   ATTRIBUTE SELECTOR
========================= */
a[target="_blank"] {
    font-style: italic;
}
