/* =========================================================
   ELECTRO CONDUCT – LATEST BLOG CARDS

   Brand Colours:
   #ff5001
   #070908
   #ffdebb
   #ff7131
========================================================= */

.latest-posts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.latest-post-col {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 0;
    box-sizing: border-box;
}

/* =========================================================
   MAIN CARD
========================================================= */

.Industry-blogbox01 {
    position: relative;

    display: block;
    height: 100%;
    margin-bottom: 20px;

    overflow: hidden;

    border: 1px solid rgba(255, 80, 1, .14);
    border-radius: 22px;

    background: #ffffff;
    color: #070908;

    text-decoration: none !important;

    box-shadow:
        0 12px 32px rgba(7, 9, 8, .08);

    isolation: isolate;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

/* Hide the original image area */

.Industry-blogbox01 .pic {
    display: none !important;
}

/* Soft orange detail */

.Industry-blogbox01::before {
    content: "";

    position: absolute;
    top: -95px;
    right: -95px;
    z-index: 0;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 80, 1, .17),
            transparent 68%
        );

    opacity: .55;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

/* Hover background */

.Industry-blogbox01::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 113, 49, .26),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #070908 0%,
            #151816 58%,
            #242824 100%
        );

    opacity: 0;

    transition: opacity .35s ease;
}

/* =========================================================
   CONTENT
========================================================= */

.Industry-blogbox01 .content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    min-height: 360px;
    padding: 38px 30px;

    border-radius: 22px;

    background: transparent;

    transition:
        transform .35s ease;
}

/* =========================================================
   HEADER / DATE / CATEGORY
========================================================= */

.Industry-blogbox01 .content-header {
    margin-bottom: 18px;

    color: #ff5001;

    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time {
    color: #ff7131;
}

/* =========================================================
   TITLE
========================================================= */

.Industry-blogbox01 .content-body .title {
    margin: 0 0 17px;

    color: #070908;

    font-size: 27px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -.7px;
}

.Industry-blogbox01 .title a {
    color: inherit !important;
    text-decoration: none !important;
}

/* =========================================================
   EXCERPT
========================================================= */

.Industry-blogbox01 .content-body .excerpt {
    margin: 0 0 26px;

    color: #626762;

    font-size: 14.5px;
    line-height: 1.85;
    font-weight: 500;
}

/* =========================================================
   FOOTER LINK
========================================================= */

.Industry-blogbox01 .content-footer {
    margin-top: auto;
    padding-top: 18px;

    border-top: 1px solid rgba(7, 9, 8, .08);
}

.Industry-blogbox01 .content-footer .link,
.Industry-blogbox01 .content-footer .link i {
    color: #ff5001 !important;

    font-size: 13.5px;
    line-height: 1.4;
    font-weight: 850;

    text-decoration: none !important;
}

/* Add arrow when module does not already provide one */

.Industry-blogbox01 .content-footer .link::after {
    content: " →";

    display: inline-block;
    margin-left: 5px;

    transition: transform .3s ease;
}

/* =========================================================
   HOVER
========================================================= */

.Industry-blogbox01:hover {
    border-color: rgba(255, 80, 1, .46);

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(7, 9, 8, .18),
        0 8px 24px rgba(255, 80, 1, .08);
}

.Industry-blogbox01:hover::before {
    opacity: 1;
    transform: scale(1.12);
}

.Industry-blogbox01:hover::after {
    opacity: 1;
}

.Industry-blogbox01:hover .content {
    transform: translateY(-2px);
}

.Industry-blogbox01:hover .content-header,
.Industry-blogbox01:hover .content-header .date,
.Industry-blogbox01:hover .content-header .category,
.Industry-blogbox01:hover .content-header .sep,
.Industry-blogbox01:hover .content-header time {
    color: #ff7131 !important;
}

.Industry-blogbox01:hover .content-body .title,
.Industry-blogbox01:hover .content-body .title a {
    color: #ffffff !important;
}

.Industry-blogbox01:hover .content-body .excerpt {
    color: rgba(255, 255, 255, .73) !important;
}

.Industry-blogbox01:hover .content-footer {
    border-color: rgba(255, 255, 255, .12);
}

.Industry-blogbox01:hover .content-footer .link,
.Industry-blogbox01:hover .content-footer .link i {
    color: #ffdebb !important;
}

.Industry-blogbox01:hover .content-footer .link::after {
    transform: translateX(4px);
}

/* =========================================================
   TRANSITIONS
========================================================= */

.Industry-blogbox01 .content-header,
.Industry-blogbox01 .content-header .date,
.Industry-blogbox01 .content-header .category,
.Industry-blogbox01 .content-header .sep,
.Industry-blogbox01 .content-header time,
.Industry-blogbox01 .content-body .title,
.Industry-blogbox01 .content-body .title a,
.Industry-blogbox01 .content-body .excerpt,
.Industry-blogbox01 .content-footer,
.Industry-blogbox01 .content-footer .link,
.Industry-blogbox01 .content-footer .link i {
    transition:
        color .3s ease,
        border-color .3s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

    .latest-post-col {
        flex: 1 1 calc(50% - 24px);
    }

    .Industry-blogbox01 .content {
        min-height: 335px;
        padding: 34px 27px;
    }

    .Industry-blogbox01 .content-body .title {
        font-size: 25px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 600px) {

    .latest-posts-row {
        gap: 17px;
    }

    .latest-post-col {
        flex: 1 1 100%;
    }

    .Industry-blogbox01 {
        margin-bottom: 0;

        border-radius: 19px;
    }

    .Industry-blogbox01::after {
        border-radius: 19px;
    }

    .Industry-blogbox01 .content {
        min-height: 285px;
        padding: 28px 22px;

        border-radius: 19px;
    }

    .Industry-blogbox01 .content-header {
        margin-bottom: 14px;

        font-size: 11.5px;
    }

    .Industry-blogbox01 .content-body .title {
        margin-bottom: 14px;

        font-size: 22px;
        line-height: 1.35;
        letter-spacing: -.4px;
    }

    .Industry-blogbox01 .content-body .excerpt {
        margin-bottom: 22px;

        font-size: 14px;
        line-height: 1.75;
    }

    .Industry-blogbox01:hover {
        transform: none;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .Industry-blogbox01,
    .Industry-blogbox01::before,
    .Industry-blogbox01::after,
    .Industry-blogbox01 .content,
    .Industry-blogbox01 .content-footer .link::after {
        transition: none;
    }
}










































