/* Scoped styles: .tp__ prefix */

.tp__InfoContainer {
    background-color: #fbdfc8;
}

.tp__InfoArea {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

/* Left Container (Video + Buttons) */
.tp__LeftContainer {
    flex: 1;
    min-width: 300px;
}

/* Video Section */
/* .tp__VideoSection styles removed as layout is handled by container */

.tp__IframeWrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 10px;
}

.tp__IframeWrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp__VideoDescription {
    margin-top: 15px;
    line-height: 1.6;
}

/* Button Section */
.tp__BtnSection {
    margin-top: 20px;
}

.tp__InfoBtnWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.is__float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.is__float:hover {
    transform: translateY(-3px);
    box-shadow: 3px 8px 0 0 rgba(0, 0, 0, 0.18);
}

/* Right Container (Info) */
.tp__RightContainer {
    flex: 1;
    min-width: 300px;
}

/* Info Section */
.tp__InfoListSection {
    /* flex: 1; (removed) */
    /* min-width: 300px; (removed) */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tp__InfoListTitle {
    font-size: 18px;
    color: #e76f51;
    background-color: #faf3eb;
    border-radius: 10px 10px 0 0;
    padding: 5px;
    border-bottom: 2px solid #e76f51;
    margin-bottom: 15px;
    margin-top: 0;
}

.tp__InfoList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp__InfoList li {
    /* border-bottom: 1px solid #e5876f; */
    padding: 8px 0;
}

.tp__InfoList li:nth-child(odd) {
    background-color: #e76f514a;
}

.tp__InfoLink {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
}

.tp__InfoLink:hover .tp__InfoText {
    text-decoration: underline;
    color: #e76f51;
}

.tp__InfoDate {
    font-size: 12px;
    line-height: 1;
}

.tp__InfoNewIcon {
    font-size: 12px;
    color: #fff;
    background-color: #e76f51;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    font-weight: bold;
}

.tp__InfoText {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

/* Responsive: Mobile */
@media screen and (max-width: 768px) {
    .tp__InfoContainer {
        flex-direction: column;
    }

    .tp__LeftContainer,
    .tp__RightContainer {
        width: 100%;
    }
}