﻿.latest-news h4 {
    font-size: 2rem;
    font-weight: 600;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.no-image-body {
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-content {
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    text-justify: inter-word;
}

.service-latest-news {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    min-width: 0;
    font-weight: bold;
    display:flex;
    justify-content:center;
}


.load-more-button {
    background-color: #0069BA;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
}

    /* Hover and Focus Effects */
    .load-more-button:hover {
        background-color: #005b99;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        color: white;
    }

    .load-more-button:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(0, 105, 186, 0.5);
    }

@media (max-width: 480px) {
    .load-more-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
