.insights-page .top-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 15rem;
    padding: var(--wp--custom--spacing--plus-2) 0 var(--wp--custom--spacing--plus-4);
    border-bottom: 1px solid var(--wp--preset--color--grey-tint-4);
}

.insights-page .top-content .content {
    position: relative;
    z-index: 2;
}

.insights-page .top-content .image {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 55%;
    height: 100%;
}

.insights-page .top-content .image img {
    height: 100%;
    object-fit: contain;
}

.insights-page .top-content .subtitle {
    margin-bottom: var(--wp--custom--spacing--plus-2);
    color: var(--wp--preset--color--light-blue);
}

.insights-page .top-content .text {
    max-width: 52rem;
    font-size: var(--wp--preset--font-size--plus-1);
}

.insights-page .top-content h1 {
    font-size: var(--wp--preset--font-size--plus-2);
}

.insights-page .conferences-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--wp--custom--spacing--base);
    padding: 0;
    padding-bottom: var(--wp--custom--spacing--plus-4);
    margin-top: var(--wp--custom--spacing--plus-2);
    list-style: none;
}

.insights-page .conferences-list .item {
    position: relative;
    color: #fff;
}

.insights-page .conferences-list .item article {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 22rem;
    padding: var(--wp--custom--spacing--base);
}

.insights-page .conferences-list .item article::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: var(--wp--preset--color--black);
    opacity: .6;
}

.insights-page .conferences-list .item:nth-child(2) article::after {
    background: var(--wp--preset--color--dark-blue);
}

.insights-page .conferences-list .item article>*:not(img) {
    position: relative;
    z-index: 2;
}

.insights-page .conferences-list .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-page .conferences-list .item article h3 {
    margin-bottom: auto;
    font-size: var(--wp--preset--font-size--plus-3);
    line-height: 1.1;
}

.insights-page .conferences-list .item .time {
    font-style: italic;
}

.insights-page .conferences-list .item h4 {
    font-size: var(--wp--preset--font-size--base);
    line-height: 1.4;
}

.insights-page .conferences-list .item .btn {
    margin-top: var(--wp--custom--spacing--base);
}

.insights-page .conferences-list .item .border-btn {
    margin-top: var(--wp--custom--spacing--base);
}

.insights-page .conferences-list .item .border-btn a {
    display: inline-block;
    width: auto;
    padding: .25em 2em;
    border: 1px solid #fff;
    border-radius: .4em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: background .2s;
}

.insights-page .conferences-list .item .border-btn a:hover {
    background-color: #fff;
    color: #000;
}

.insights-page .articles {
    padding: var(--wp--custom--spacing--plus-4) 0;
}

.insights-page .articles .big-title {
    margin: 0 auto;
    font-size: var(--wp--preset--font-size--plus-2);
    text-align: center;
}

.insights-page .articles .subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: var(--wp--preset--font-size--plus-2);
    font-weight: 300;
    word-break: break-word;
    text-align: center;
}

.insights-page .articles .description {
    display: flex;
    gap: var(--wp--custom--spacing--plus-6);
    margin: 0 auto;
    padding-top: var(--wp--custom--spacing--plus-2);
    padding-bottom: var(--wp--custom--spacing--plus-2);
}

.insights-page .articles .description .content {
    display: flex;
    flex-direction: column;
    flex-basis: 0;
    flex-grow: 1;
    justify-content: space-between;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.insights-page .articles .description .content .border-btn a {
    display: inline-block;
    width: auto;
    min-width: 10em;
    border: 1px solid var(--wp--preset--color--mid-grey);
    border-radius: .4em;
    cursor: pointer;
    font-size: var(--wp--preset--font-size--minus-1);
    font-weight: 300;
    padding: .5em 2.5em;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
    color: var(--wp--preset--color--mid-grey);
}

.insights-page .articles .description .image {
    flex-basis: 0;
    flex-grow: 1;
}

.insights-page .articles .description .image img {
    width: 465px;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.insights-page .articles .btn-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5em;
}

.insights-page .message-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--wp--custom--spacing--base);
    padding: var(--wp--custom--spacing--plus-4) 0;
    margin-top: var(--wp--custom--spacing--plus-2);
}

.insights-page .message-list .item {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.insights-page .message-list .item article {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: var(--wp--custom--spacing--base);
}

.insights-page .message-list .item h3 {
    font-size: var(--wp--preset--font-size--base);
    letter-spacing: .1em;
    margin-bottom: .5em;
    text-transform: uppercase;
}

.insights-page .message-list .item h4 {
    font-size: var(--wp--preset--font-size--base);
    line-height: 1.4;
}

.insights-page .message-list .item .btn {
    padding-top: var(--wp--custom--spacing--plus-1);
    margin-top: auto;
}

.insights-page .message-list .item .btn-style a {
    padding: 0;
    color: #fff;
    border-bottom-color: var(--wp--preset--color--light-blue);
}

.insights-page .message-list .item:nth-child(1) article {
    background: var(--wp--preset--color--dark-green);
}

.insights-page .message-list .item:nth-child(2) article {
    background: var(--wp--preset--color--dark-blue);
}

.insights-page .message-list .item:nth-child(3) article {
    background: var(--wp--preset--color--orange);
}

.insights-page .message-list .item:nth-child(4) article {
    background: var(--wp--preset--color--pink);
}

.insights-page .message-list .item .border-btn {
    margin-top: calc(var(--wp--custom--spacing--base) * 2);
    border: 1px solid currentColor;
    border-radius: .4em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    font-weight: 100;
    transition: background .2s;
}

.insights-page .message-list .item .border-btn a {
    display: block;
    padding: .25em 2em;
    text-decoration: none;
    color: var(--wp--preset--color--mid-grey);
}

.insights-page .video {
    padding: calc(var(--wp--custom--spacing--plus-2) * 2) 0;
}

.insights-page .video .other-web {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border: 0;
    overflow: hidden;
}

.insights-page .video .other-web iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.insights-page .video figcaption {
    padding: var(--wp--custom--spacing--plus-1) var(--wp--custom--spacing--base);
    color: var(--wp--preset--color--white);
    background-color: var(--wp--preset--color--dark-grey);
}

.insights-page .video figcaption strong {
    color: var(--wp--preset--color--orange);
}

.insights-page .all-video-btn {
    text-align: center;
}

.insights-page .all-video-btn a {
    display: inline-block;
    min-width: 10em;
    padding: .25em 2em;
    border: 1px solid currentColor;
    border-radius: .4em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    font-weight: 100;
    transition: background .2s;
    text-decoration: none;
    border-color: var(--wp--preset--color--mid-grey);
    color: var(--wp--preset--color--mid-grey);
}