/* Common styles */
#article-summary {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),  /* main soft shadow */
        0 1px 3px rgba(0, 0, 0, 0.08); /* secondary subtle shadow */
}

#summary-list {
    padding-left: 0px;
}

/* BLUE THEME */
.article-summary-blue #article-summary::before {
    content: "";
    display: block;
    background-color: #27526A;
    height: 40px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article-summary-blue #article-summary p {
    font-size: 26px;
    font-weight: 900;
    color: #27526A;
    margin-top: 50px;
    text-align: center;
}

.article-summary-blue #summary-list li {
    margin-bottom: 5px;
    margin-left: 0px !important;
    background-color: #27526A;
    border-radius: 30px;
    padding: 10px;
    list-style-type: none;
}

.article-summary-blue #summary-list li:nth-child(even) {
    background-color: transparent;
}

.article-summary-blue #summary-list a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    text-align: center;
    font-weight: bold;
}

.article-summary-blue #summary-list li:nth-child(even) a {
    color: #27526A;
}

/* RED THEME */
.article-summary-red #article-summary::before {
    content: "";
    display: block;
    background-color: #DA2317;
    height: 40px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article-summary-red #article-summary p {
    font-size: 26px;
    font-weight: 900;
    color: #DA2317;
    margin-top: 50px;
    text-align: center;
}

.article-summary-red #summary-list li {
    margin-bottom: 5px;
    margin-left: 0px !important;
    background-color: #DA2317;
    border-radius: 30px;
    padding: 10px;
    list-style-type: none;
}

.article-summary-red #summary-list li:nth-child(even) {
    background-color: transparent;
}

.article-summary-red #summary-list a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    text-align: center;
    font-weight: bold;
}

.article-summary-red #summary-list li:nth-child(even) a {
    color: #DA2317;
}
