.diy_more_horoscope {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
            padding: 13px 60px 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px 12px 12px 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .diy_more_horoscope_title {
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 30px;
            color: #FFFFFF;
            letter-spacing: 1px;
            gap: 10px;
        }

        .diy_more_horoscope_title_content {
            color: #FFFFFF;
        }

        .diy_more_horoscope_title_icon {
            width: 11px;
            height: 11px;
            background-size: 100% 100%;
            background-position: center;
            background-image: url("/wp-content/uploads/2025/03/Star_8.png");
        }

        .diy_more_horoscope_items_outer {
            display: flex;
            justify-content: space-between;
            gap: 13px;
            align-items: stretch;
            width: 100%;
        }

        .diy_more_horoscope_item_box {
            box-sizing: border-box;
            flex: 1;
            min-height: 205px;
            background-size: cover;
            background-position: right center;
            border-radius: 12px 12px 12px 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            top: 0;
        }

        .diy_more_horoscope_item_box:hover {
            top: -10px;
        }

        .diy_more_horoscope_item_title {
            font-weight: 500;
            font-size: 30px;
            color: #FFFFFF;
            line-height: 30px;
        }

        .diy_more_horoscope_item_content {
            font-weight: 500;
            font-size: 30px;
            color: #FFFFFF;
            line-height: 30px;
        }