.investorrelations-container {
    display: flex;
    gap: 144px;
    align-items: flex-start;
    margin: 30px 0;
    justify-content: space-between;
    padding: 0 !important;
}

.investorrelations-container .default-content-wrapper {
    /* width: 40%; */
    /* margin-top: 60px !important; */
}

/* left image */
.default-content-wrapper {
    /* border-radius: 12px; */
    display: block;
}

/* Right Content */
.investorrelations-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* max-width: 50%!important; */
}

.investorrelations-wrapper a:any-link{
    color: #ea6024;
}

.investorrelations-container > .investorrelations-wrapper:only-child {
  flex: 1 1 100%;
  max-width: 100%;
  justify-content: flex-start;
}
.investorrelations-container > .investorrelations-wrapper:only-child .investorrelations.block {
  width:100%;
}
.investorrelations__image-container {
    /* max-width: 340px; */
}

.investorrelations__banner {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.investorrelations__banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* BLOCK */
.investorrelations {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    /* width: 75%; */
    min-width: 600px;
}

.investorrelations__heading-wrapper {
    margin-bottom: 60px;
}

.investorrelations__heading {
    font-family: var(--body-font-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    color: #111;
    margin: 0 0 8px 0;
}

.investorrelations__heading p {
    font-family: var(--body-font-family);
    font-weight: 400;
    /* margin: 0;
    line-height: 120%; */
    color: #111;
}

/* ACCORDION ITEMS */
.investorrelations__item {
    width: 100%;
    background: #fff;
    border: 1px solid #a70e15;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.investorrelations__item:last-child {
    margin-bottom: 0;
}

.investorrelations__title {
    background: #fff7f3;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.investorrelations__title:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 3px solid #9b1c1c;
    border-bottom: 3px solid #9b1c1c;
    transform: rotate(45deg);
    margin-left: 6px;
}

.investorrelations__title:hover {
    background: #ffeee8;
}

.investorrelations__title p {
    font-family: var(--body-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    color: #a70e15;
    margin: 0;
    flex: 1;
    letter-spacing: 0.2px;
}

.investorrelations__arrow {
    font-size: 18px;
    color: #a70e15;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.investorrelations__item.active .investorrelations__arrow {
    transform: rotate(180deg);
}

.investorrelations__content {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding: 16px;
    display: none;
    background-color: #fff;
}

.investorrelations__content ul{
    list-style: unset !important;
}

.investorrelations__item.active .investorrelations__content {
    display: block;
}

.investorrelations__content p {
    margin: 0 0 10px 0;
    color: rgba(17, 17, 17, 1);
}

.investorrelations__content p.button-container {
    margin: 20px 0 30px;
}

.investorrelations__content p a.button {
    color: rgba(17, 17, 17, 1);
    font-family: var(--body-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.investorrelations__content p.button-container .button[href^="mailto:"] {
    font-family: var(--body-font-family-semibold);
    color: rgba(240, 76, 35, 1);
    text-decoration: underline;
}

.investorrelations__content p.button-container .button[href^="mailto:"]:before {}

.investorrelations__content p:last-child {
    margin-bottom: 0;
}

/* BUTTONS */

.investorrelations-container .button-container:last-child {
    margin-bottom: 0 !important;
}

.investorrelations-container .button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: transparent;
    border: none !important;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--body-font-family);
    font-size: 12px;
    font-weight: 400;
    color: #111;
    transition: background-color 0.15s ease;
    position: relative;
}

.investorrelations-container .button:hover {
    background: #f3f3f3;
}

.investorrelations__content p.button-container .button[href^="tel:"]::before {
    content: url("../../icons/call-icon.png");
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.investorrelations__content p.button-container .button[href^="tel:"]::after {
    content: url("/icons/copy-icon.png");
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* .button[href^="mailto:"] {
    color: #f04c23;
    font-weight: 600;
    text-decoration: underline;
} */

.investorrelations__content p.button-container .button[href^="mailto:"]::before {
    content: url("/icons/mail-icon.png");
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

@media (max-width: 1024px){
    .investorrelations-container{
        gap: 40px;
    }
    
}

/* RESPONSIVE */
@media (max-width: 820px) {
    .investorrelations-container {
        display: block;
        padding: 0 16px !important;
    }

    .investorrelations-wrapper ol a,
    .investorrelations-wrapper ol li::marker{
        font-size: 12px;
        color: #a70e15 !important;
        line-height: 10px;
    }

.investorrelations__heading-wrapper{
    margin-bottom: 20px;
}
    .investorrelations__image-container {
        display: none;
    }

    .investorrelations {
        padding: 0;
        width: 100%;
        min-width: 100%;
    }

    .investorrelations-wrapper {
        padding: 0 !important;
    }

    .investorrelations__heading {
        font-size: 18px;
          text-align: left;
    }

    .investorrelations__title p {
        font-size: 13px;
    }

    .investorrelations__content {
        padding: 12px 14px 14px;
    }

    .investorrelations__content p,
    .investorrelations__content ul li {
        font-size: 12px;
        line-height: 18px;
    }

    .investorrelations-wrapper .button {
        font-size: 12px;
        padding: 8px 10px;
    }
}