.resource-link__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20rem;
    padding: 20rem 24rem;
    border: 1rem solid var(--light-grey);
    border-radius: 16rem;
    background-color: var(--white);
    text-decoration: none;
    transition: .3s ease;
}

.resource-link__inner:hover {
    border-color: var(--primary-orange);
	box-shadow: 0 8rem 32rem var(--light-grey);
}

.resource-link__left {
    display: flex;
    align-items: center;
    gap: 20rem;
    min-width: 0;
}

.resource-link__icon {
    width: 48rem;
    height: 48rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8rem;
    background-color: var(--light-orange);
}

.resource-link__icon span {
    color: var(--primary-orange);
}

.resource-link__label {
    margin-bottom: .625rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark-grey);
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-underline-offset: 2px;
}

.resource-link__title {
    line-height: 1.35;
    font-weight: 600;
    color: var(--dark-navy);
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-underline-offset: 2px;
}

.resource-link__arrow {
    color: var(--primary-orange);
}