.apb-3268-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.apb-3268-item {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}
.apb-3268-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.apb-3268-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}
.apb-3268-content-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.apb-3268-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}
.apb-3268-title a {
    text-decoration: none;
    color: #333333;
    transition: color 0.3s ease;
}
.apb-3268-title a:hover {
    color: #6EC1E4; /* Fallback primary color */
}
.apb-3268-meta {
    font-size: 13px;
    color: #7A7A7A;
    margin-bottom: 15px;
    font-style: italic;
}
.apb-3268-excerpt {
    margin-bottom: 20px;
    flex-grow: 1;
    color: #54595F;
    line-height: 1.6;
}
.apb-3268-read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6EC1E4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    margin-top: auto;
    transition: all 0.3s ease;
    text-align: center;
}
.apb-3268-read-more:hover {
    opacity: 0.85;
    color: #ffffff;
}
