.white-papers {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.white-paper__sponsored {
    text-align: center;
    font-size: 1.6rem;
    color: black;
}
@media (min-width: 576px) {
	.white-paper__sponsored {
		text-align: left;
		font-size: 1.2rem;
	}
}

.white-paper__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 576px) {
	.white-paper__body {
        flex-direction: row;
        align-items: flex-start;
	}
}

.white-paper__image {
    width: 200px;
}
@media (min-width: 576px) {
    .white-paper__image {
        width: 150px;
    }
}

.white-paper__details {
    flex: 1;
}

.white-paper__title {
    font-size: 2rem;
    font-weight: bold;
}

.white-paper__publication-date {
    display: none;
}
@media (min-width: 576px) {
    .white-paper__publication-date {
        display: block;
        padding-left: 4rem;
    }
}

.white-paper__author {
    display: block;
}

.white-paper__actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.white-paper__sponsor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.white-paper__sponsored-by {
    font-size: 1.5rem;
    color: #888;
    text-transform: uppercase;
}
@media (min-width: 576px) {
    .white-paper__sponsored-by {
        font-size: 1rem;
    }
}

.white-paper__logo {
    max-width: 150px;
}
@media (min-width: 576px) {
    .white-paper__logo {
        max-width: 75px;
    }
}
