.ministries-section {
    background-color: rgb(226 227 218 / 1);
	padding: 0 1.5rem;
	border-radius: 1.25rem;
	margin-top: 2rem;
	@media (min-width: 640px) {
		padding-left: 3rem;
		padding-right: 3rem;
		margin-top: 3rem;
	}
    @media (min-width: 1024px) {
        padding-top: 6rem;
        padding-bottom: 6rem;
		margin-top: 6rem;
    }

    .ministries-grid {
        display: grid;
        gap: 4rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .ministry-card {
        display: flex;
        align-items: flex-start;
		justify-content: space-between;
        gap: 1.75rem;
        flex-direction: column;
		
        @media (min-width: 1024px) {
            flex-direction: row-reverse;
            align-items: center;
            gap: 4rem;
        }
    }

    .ministry-photo {
        border-radius: .5rem;
        overflow: hidden;
        width: 100%;
		aspect-ratio: 16/9;
		position: relative;
        @media (min-width: 1024px) {
            width: 50%;
        }
        img {
			position: absolute;
			inset: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
    }

    .ministry-info {
        width: 100%;
        position: relative;
        @media (min-width: 1024px) {
            width: calc(5/12 * 100%);
        }

        .ministry-name {
            font-family: var(--e-global-typography-primary-font-family, "Oswald"), sans-serif;
            color: rgb(14, 18, 22);
            letter-spacing: -0.045rem;
            font-weight: 700;
            font-size: 2.25rem;
            line-height: 1.15;
            @media (min-width: 1024px) {
                font-size: 3rem;
                line-height: 1;
            }
        }

        p {
            max-width: 32rem;
            font-size: 1.125rem;
            line-height: 1.75rem;
            letter-spacing: .025em;
            color: rgb(35, 31, 32);
			padding: 0;
			@media (min-width: 768px) {
				padding-left: 1rem;
				padding-right: 1rem;
			}
        }

        .btn-primary {
            background-color: var(--e-global-color-primary);
            font-family: var(--e-global-typography-accent-font-family);
            border-radius: 1.25rem;
            text-transform: uppercase;
            line-height: 1;
            font-size: .875rem;
            padding: .75rem 1.5rem;
            font-weight: 500;
            transition: all .3s cubic-bezier(.455, .03, .515, .955);
            &:hover {
                background-color: #000;
            }
        }
    }
    


	.section-title {
		font-family: var(--e-global-typography-primary-font-family, "Oswald"), sans-serif;
		color: rgb(14, 18, 22);
		letter-spacing: -0.095rem;
		line-height: 1;
		font-weight: 700;
		font-size: 3.75rem;
		position: relative;
		transform: translateY(-1.5rem);
		@media (min-width: 1024px) {
			font-size: 5.5rem;
		}
	}
}
