.opportunity-block {
    width: 100%;
    margin-bottom: 2rem;
} 

.opp-content {
    flex-grow: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.opp-content h2, .opp-content h3 {
    color: #1f2c3d;
}

.opp-image {
  display: flex;
  border-left: 1px solid rgb(222, 226, 230);
  border-top: 1px solid rgb(222, 226, 230);
  border-bottom: 1px solid rgb(222, 226, 230);
}

.opp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opportunity-block .btn-opp {
    background-color: #5da4e5;
    color: #fff;
    font-weight: 600;
    font-family: "Univers Next Pro", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: none;
    padding: .5rem 1rem;
    transition: all 0.125s ease-in-out;
    margin-top: auto;
}

.opportunity-block .btn-opp:hover, .opportunity-block .btn-opp:focus {
    background-color: #2f4f69;
    color: #fff;
}
.opportunity-block .btn-opp::after {
    content: '❯';
    display: inline-block;
    margin-left: .5rem;
}