.philosophy-item-group {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
}

.philosophy-item-group:nth-child(odd) {
    background-color: #FAFAFA;
}

.philosophy-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.philosophy-item:nth-child(1) {
    margin-bottom: 20px;
}

.philosophy-item .img-container {
    width: 310px;
    height: 200px;
    padding: 10px;
}

.philosophy-item .img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 1px 1px rgb(0 0 0 / 8%), 0 2px 2px rgb(0 0 0 / 12%), 0 4px 4px rgb(0 0 0 / 16%), 0 8px 8px rgb(0 0 0 / 20%);
    opacity: 0.8;
}

.philosophy-item .description {
    width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
}

.philosophy-item .description.right-align span {
    text-align: right;
}

.philosophy-item .description.right-align strong {
    text-align: right;
}

.philosophy-item .description.right-align p {
    text-align: right;
}

.philosophy-item .description.left-align span {
    text-align: left;
}

.philosophy-item .description.left-align strong {
    text-align: left;
}

.philosophy-item .description.left-align p {
    text-align: left;
}

.philosophy-item .description span {
    color: #124094;
    font-weight: bold;
    border-bottom: 2px solid #124094;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.philosophy-item .description strong {
    margin-bottom: 10px;
}