/* Main Callout Styling */
.custom-callout {
    position: relative;
    background-color: #F0F0F0;
    border-radius: 6px;
    padding: 20px 25px;
    margin: 30px 0;
    color: #222;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Left vertical accent line */
.callout-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: var(--callout-color);
}

/* Heading styles */
.callout-heading {
    color: var(--callout-color);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Icon in heading */
.callout-heading i {
    margin-right: 10px;
    font-size: 1.1em;
}

/* Content padding */
.callout-content {
    padding-left: 10px;
    position: relative;
    z-index: 2;
}

/* Hexagon background elements - all same size now */
.callout-hexagon {
    position: absolute;
    width: 50px;
    height: 43px;
    background-color: rgba(133, 82, 179, 0.07);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
}

/* Top left hexagon cluster - repositioned for same-sized hexes */
.hex-top-left {
    top: -22px;
    left: 20px;
}

.hex-top-left-2 {
    top: 0px;
    left: 59px;
}

.hex-top-left-3 {
    top: 23px;
    left: 20px;
}

/* Bottom right hexagon cluster - repositioned for same-sized hexes */
.hex-bottom-right {
    bottom: -22px;
    right: 20px;
}

.hex-bottom-right-2 {
    bottom: 0px;
    right: 59px;
}

.hex-bottom-right-3 {
    bottom: 23px;
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .callout-hexagon {
        opacity: 0.05;
    }
}

@media (max-width: 992px) {
    .custom-callout {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .callout-heading {
        font-size: 1.1rem;
    }

    .hex-top-left-3,
    .hex-bottom-right-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .custom-callout {
        padding: 15px;
    }

    .callout-line {
        width: 4px;
    }

    .callout-content {
        padding-left: 8px;
    }

    .hex-top-left-2,
    .hex-bottom-right-2 {
        display: none;
    }
}

/* Callout Variations */
.custom-callout.warning .callout-line {
    background-color: #e74c3c;
}

.custom-callout.warning .callout-heading {
    color: #e74c3c;
}

.custom-callout.success .callout-line {
    background-color: #27ae60;
}

.custom-callout.success .callout-heading {
    color: #27ae60;
}

.custom-callout.info .callout-line {
    background-color: #3498db;
}

.custom-callout.info .callout-heading {
    color: #3498db;
}

.custom-callout.tip .callout-line {
    background-color: #f39c12;
}

.custom-callout.tip .callout-heading {
    color: #f39c12;
}