
/* Layout Changes for Main2 Section */
.main2-flex-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.left-section {
    flex: 2;
    width: 0; /* Ensures flex works properly with content */
}

.right-section {
    flex: 1;
    width: 0;
    display: flex;
    flex-direction: column;
}

/* Adjust margin for the right section to align better if needed, 
   currently main2-div has margin-top: 60px. 
   If left has title above, right might be higher. 
   We can add a spacer or margin if we want them aligned at top of white box. 
   But usually "title at bottom" implies a different vertical rhythm. 
*/

.right-section .main2-div {
    flex: 1; /* Make it fill available space if we want title strict at bottom *//* Remove top margin to align with top of container (optional) or keep to match left content? */
    /* If left content has margin-top: 60px after title, 
       and we want right content to start at same visual vertical level as left title, 
       we might need margin-top 0 or small. 
       Let's keep existing margin-top: 60px from common.css for consistency 
       UNLESS we want to offset it. 
       Actually, common.css .main2-div has margin-top: 60px globally. 
       So right side will have 60px from top. 
       Left side has Title + 60px. 
       So Right side is HIGHER. This often looks fine. 
    */
}

/* Bottom Title Link Styles */
.bottom-title-link {
    display: block;
    text-decoration: none;
    margin-top: 20px; /* Space from content */
    text-align: right; /* Align to right as per arrow logic */
    position: relative;
    padding-right: 30px; /* Space for arrow */
    cursor: pointer;
}

/* Ensure inner title styles work */
.bottom-title-link .title-11-title {
    text-align: right; /* Override center alignment */
}

.bottom-title-link:hover .title-11-title span,
.bottom-title-link:hover .title-11-title {
    opacity: 0.9;
}

/* Arrow Effect */
.bottom-title-link::after {
    content: '→'; /* Or use an icon font if available, but simple arrow is request-safe */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    font-size: 24px;
    color: #fff; /* Matches title-11-bai */
    transition: all 0.3s ease;
}

.bottom-title-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .main2-flex-container {
        flex-direction: column;
    }
    .left-section, .right-section {
        width: 100%;
        flex: auto;
    }
    /* Restore title position for mobile if needed, but user didn't ask. 
       Keeping it at bottom is fine for mobile too. */
}


.main2-list-right-news-list-title{
  margin: 0 !important;
}

.main2-list-right dd{
		padding: 20px 30px !important;
		font-size: 10px !important;
}