.story-btn-group {
    display: flex;
    gap: 10px;
    padding: 20px;
}

.story-btn-group .btn {
    text-decoration: none;
    background-color: #e6f0ff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    color: #000;
    transition: background-color 0.3s ease;
}

.story-btn-group .btn.active {
    background-color: #0066cc;
    color: #fff;
}

.story-btn-group .btn:hover {
    background-color: #cce0ff;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.card:hover {
    text-decoration: none;
}

.card img {
    width: 100%;
    height: 278px;
}

.content-story {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-story h3 {
    margin: 0 0 10px;
    color: #000000;
    line-height: 1.7;
}

.content-story p {
    flex: 1;
    margin-bottom: 16px;
    color: #555;
}

.content-story button {
    align-self: flex-end;
    background: #FFD60066;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #FF5C00;
    margin: 20px 0 0 0;
    font-family: OpenSans;
}
.article-introtext {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #00000080;
    font-family: OpenSans;
}