/* AZ Tech Week Code of Conduct Blocks Component */

.aztech-code-of-conduct-blocks {
    padding: 100px 0;
}

.conduct-blocks-title {
    text-transform: uppercase;
    margin-bottom: 16px;
}

.conduct-blocks-description {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}

.conduct-blocks-description p {
    margin-bottom: 15px;
}

.conduct-blocks-description p:last-child {
    margin-bottom: 0;
}

.conduct-blocks-description ul,
.conduct-blocks-description ol {
    padding-left: 20px;
    margin-left: 0;
}

.conduct-blocks-description a {
    color: #ffffff;
    text-decoration: underline;
}

/* Blocks Grid */
.conduct-blocks-row {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.conduct-block-col {
    margin-bottom: 0;
    max-width: 490px;
}

.conduct-block {
    height: 100%;
}

.conduct-block .row {
    margin-left: 0;
    margin-right: 0;
}

/* Icon Column */
.conduct-icon-col {
    padding-left: 0;
    padding-right: 15px;
}

/* Content Column */
.conduct-content-col {
    padding-left: 0;
    padding-right: 0;
}

/* Icon Styling */
.conduct-block-icon {
    width: 40px;
    height: 40px;
    background-color: #6BE6FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.conduct-block-icon img {
    height: 22px;
    width: auto;
    max-width: 22px;
    object-fit: contain;
}

/* Block Title */
.conduct-block-title {
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

/* Block Content */
.conduct-block-content {
    color: #ffffff;
}

.conduct-block-content p {
    margin-bottom: 15px;
}

.conduct-block-content p:last-of-type {
    margin-bottom: 0;
}

.conduct-block-content ul,
.conduct-block-content ol {
    padding-left: 20px;
    margin-left: 0;
    margin-bottom: 15px;
}

.conduct-block-content ul:last-child,
.conduct-block-content ol:last-child {
    margin-bottom: 0;
}

.conduct-block-content li {
    font-size: 18px;
    line-height: 1.2;
}

.conduct-block-content li:last-child {
    margin-bottom: 0;
}

.conduct-block-content a {
    color: #ffffff;
    text-decoration: underline;
}

/* Desktop (992px+) */
@media (min-width: 992px) {
    
    .conduct-blocks-description {
        font-size: 18px;
    }
    
    .conduct-block-icon {
        width: 100px;
        height: 100px;
    }
    
    .conduct-block-icon img {
        height: 56px;
        max-width: 56px;
    }

}
