/* All hyperlinks */
a {
    color: #006400; /* dark green */
}
a:hover {
    color: #004d00; /* darker green on hover */
}

/* All buttons */
button,
input[type="submit"],
.wp-block-button__link {
    background-color: #006400; /* dark green */
    color: #ffffff; /* text white */
    border: none; 
    border-radius: 4px;
}

button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background-color: #004d00; /* hover color */
}

.latest-post-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    gap: 0 !important;
    background: #ffffff !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
	 box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.latest-post-card__image {
    width: 50% !important;
    flex: 0 0 50% !important;
    min-height: 420px !important;
    display: block !important;
}

.latest-post-card__image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.latest-post-card__image img,
.latest-post-card__image-tag,
.latest-post-card__image-placeholder {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover !important;
    margin: 0 !important;
}

.latest-post-card__content {
    width: 50% !important;
    flex: 0 0 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 48px 56px !important;
    box-sizing: border-box !important;
}

.latest-post-card__title {
    margin: 0 0 24px 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

.latest-post-card__title a {
    color: #111 !important;
    text-decoration: none !important;
}

.latest-post-card__excerpt {
    margin: 0 0 24px 0 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #444 !important;
}

.latest-post-card__meta {
    margin: 0 0 28px 0 !important;
    font-size: 1rem !important;
    color: #222 !important;
}

.latest-post-card__button-wrap {
    margin-top: 0 !important;
}

.latest-post-card__button {
    display: inline-block !important;
    padding: 16px 30px !important;
    background: #08b450 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
}

.latest-post-card__button:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.latest-post-section {
    background: #f8f8f8 !important;
    padding: 60px 0 !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.latest-post-section .latest-post-card {
    max-width: 1140px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
}

@media (max-width: 767px) {
    .latest-post-card {
        flex-direction: column !important;
    }

    .latest-post-card__image,
    .latest-post-card__content {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .latest-post-card__image img,
    .latest-post-card__image-tag,
    .latest-post-card__image-placeholder {
        min-height: 260px !important;
    }

    .latest-post-card__content {
        padding: 24px !important;
    }

    .latest-post-card__title {
        font-size: 1.6rem !important;
    }

    .latest-post-card__excerpt {
        font-size: 1rem !important;
    }
}