.blog-global{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1rem;
}

.article-global {
	max-width: 25rem;
    min-width: 300px;
	background: white;
	color: #263238;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.article-global > figure {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.article-global > figure > img {
    image-rendering: crisp-edges;
    object-fit: cover;
    width: 100%;
    height: 285px;
}

.article-content {
    padding: 1.5rem;
}

.article-content > a {
    text-decoration: none;
}

.article-content > a > h2 {
    font-size: 1.75rem;
    display: inline;
    margin: 0;
    margin-left: -1px;
    color: #646464;
}

.article-content > a > h2:hover {
    color: gold;
}

.article-content > p.subtitle {
    display:inline-block;
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
    margin-top: 0.25rem;
}

.article-content > p {
    line-height: 1.25rem;
    font-size: 0.95rem;
    text-align: justify;
    margin: 0;
    margin-top: 1.25rem;
}

.article-footer {
    background: #646464;
}

.article-footer > a {
    display: flex;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    align-items: center;
}

.article-footer > a:hover {
    border-radius: inherit;
}

.article-footer > a::after {
    content: " → ";
    margin-left: auto;
    transition: 0.3s;
    font-size: 1.25rem;
}