/* Main section styles */
#blog_h {
    padding: 3rem 0;
}

.missionG {
    color: #4299f0;
    margin-bottom: 2rem;
}

/* Article card styles */
.blog_h1i {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 450px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog_h1i img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.title-wrapper {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.blog_h1i h5 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog_h1i h5 a {
    color: #4299f0;
    text-decoration: none;
}

.blog_h1i h5 a:hover {
    color: #1090f2;
}

.blog_h1i h6 {
    margin-bottom: 2px;
    font-size: 14px;
    color: #585858;
}

.blog_h1i p {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4299f0;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #1090f2;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Share button styles */
.share-button {
    margin: 15px 0;
    text-align: center;
}

.whatsapp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.2);
}

.whatsapp-share-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.whatsapp-share-btn i {
    font-size: 20px;
}

/* Pagination styles */
.pagination {
    margin-top: 2rem;
}

.pagination .btn {
    background-color: white;
    color: #4299f0;
    border: 2px solid #4299f0;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 5px;
    padding: 8px 16px;
    border-radius: 50px;
}

.pagination .btn:hover {
    background-color: #4299f0;
    color: white;
}

.pagination .btn.active {
    background-color: #4299f0;
    color: white;
    border: 2px solid #4299f0;
}

/* Responsive grid */
.blog_h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.blog_h1 .col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

/* Calendar and clock icons */
.col_brown {
    color: #88001b;
} 