
.underlined-heading, 
.underlined-heading a {
  /*text-decoration: underline;*/
  font-size: clamp(1rem, 1rem + (1.375 - 1) * (100vw - 23.75rem) / (75 - 23.75), 1.375rem);
  font-weight: bold;
  color: #000;
  cursor: default;
}

.underlined-heading a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.underlined-heading a:focus-visible {
  outline: auto; /* or -webkit-focus-ring-color auto 1px depending on the file version */
  outline-offset: 2px;
}

/* Specific spacing found in our-business.css */
.uh70 {
  margin-top: 70px;
}



/* Core Structural Styles */
.remarkableholder {
    background: #fff;
}

.WC-container {
    max-width: 75rem;
    margin: 0 auto;
    position: relative;
}

/* Desktop Layout (#remarkables) */
#remarkables {
    display: block;
}

.Remarkable {
    transition: background-color 0.4s ease;
}

.Remarkable:hover .RemarkableClick {
    transition: background-color 0.4s ease;
    background-color: rgba(0,0,0,0.7);
    display: flex;
}

.RemarkableClick {
    transition: opacity 0.4s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    position: relative;
}

.RemarkableClickLink {
    flex-direction: column;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0 4rem;
    display: none;
}

.Remarkable:hover .RemarkableClickLink,
.Remarkable:hover .arrow {
    display: flex;
}

/* Typography & Headings 
.underlined-heading, .underlined-heading a {
    text-decoration: underline;
    font-size: clamp(1rem, 1rem + (1.375 - 1) * (100vw - 23.75rem) / (75 - 23.75), 1.375rem);
    font-weight: bold;
    color: #000;
}*/

.underlined-heading a:hover {
    opacity: 0.7;
    cursor: pointer;
}

.masthead-text-64 {
    margin-top: 1.5rem;
    font-size: 3.25rem;
    line-height: 4rem;
    font-weight: bold;
}

/* Buttons & CTAs */
.btn {
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--black {
    background-color: #000;
    color: #fff;
    border: 2px #000 solid;
}

.btn--black--outline {
    background-color: #fff;
    color: #000;
    border: 2px #000 solid;
}

.cta-black {
    display: inline-block;
    background-color: #000;
    color: #fff;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px #000 solid;
}

.cta-white {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border: 2px #000 solid;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* Mobile Specific Styles (#remarkablesmobile) */
#remarkablesmobile {
    display: none;
}

.cardmatrix {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.newscard {
    display: flex;
    flex-direction: column;
    width: calc(33.3333% - 21.33px);
    margin-top: 2rem;
    margin-right: 2rem;
    position: relative;
    height: 30.5rem;
}

.challengeimage {
    width: 100%;
    height: 19rem;
}

.challengeimagebox {
    position: absolute;
    top: 166px;
    background-color: #fff;
    width: calc(100% - 2rem);
    height: 18rem;
    left: 0px;
}

.challengeimageboxtext {
    font-weight: bold;
    padding: 2rem;
}

.challengeimageboxbutton {
    position: absolute;
    bottom: 0px;
    height: 4rem;
    padding-left: 2rem;
}

/* Arrow Decoration */
.arrowcontainer {
    position: absolute;
    bottom: 4.5rem;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    display: flex;
}

.arrow {
    background: url('/?a=251534') no-repeat center center;
    height: 3rem;
    width: 3rem;
    background-color: #fff;
    border-radius: 100%;
    display: none;
}

/* Responsive Media Queries */
@media only screen and (max-width: 1199px) {
    #remarkables { display: none; }
    #remarkablesmobile { display: block; }
    
    #remarkablescardmatrix {
        display: flex;
        overflow-x: scroll;
        flex-wrap: nowrap;
    }
    
    #remarkablescardmatrix .newscard {
        width: 15rem;
        height: 18.1rem;
        flex-shrink: 0;
    }
    
    #remarkablescardmatrix .challengeimagebox {
        bottom: 0rem;
        background-color: rgba(0,0,0,0.3);
        width: 100%;
        height: 100%;
        top: unset;
    }
}