
.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding: 5px;
    place-content: center;
    justify-content: space-between;
}

.row_direction {
    flex-direction: row;
}

.row-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: auto;
    max-width: 180px;
}

.row-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.row-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}

.row-content {
    padding: 20px;
}

.row-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.row-excerpt {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
}

.articles, .article, article {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    place-items: center;
    place-content: center;
    justify-content: space-between;
}

article {
    padding: 20px;
}

article ul {
    list-style-type: none;
    margin: 24px 0;
    padding: 0;
}

article li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #e0e0e0;
}

article hr {
    border: none;
    border-top: 1px solid #333333;
}

article table {
    border-collapse: collapse;
    background-color: #141414;
    border-radius: 8px;
    overflow-x: auto;
}

article th {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #333333;
}

article td {
    border-bottom: 1px solid #333333;
    color: #e0e0e0;
}