.absolit-tldr-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
	margin-bottom: 50px;
	margin-top: 20px;
}

.absolit-tldr-content {
    flex: 2;
    padding: 2rem;
    border-right: 1px solid #f0f0f0;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.absolit-tldr-headline {
    margin-top: 0;
    color: #34464e;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.absolit-tldr-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.absolit-key-findings-title {
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.absolit-tldr-list {
    margin: 0 0 1.5rem 1.2rem;
    padding: 0;
}

.absolit-tldr-list li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.absolit-tldr-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.absolit-button-podcast {
    background: #009ee0;
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.2s;
    display: inline-block;
}

.absolit-button-podcast:hover {
    background: #8da70e;
}

.absolit-link-linkedin {
    color: #0077b5; /* LinkedIn Blue */
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.absolit-link-linkedin:hover {
    text-decoration: underline;
}

/* Person Sidebar */
.absolit-tldr-person {
    flex: 1;
    padding: 0;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 250px;
    overflow: hidden;
	position: relative;
}

.absolit-person-image-wrapper {
    cursor: pointer;
    width: 100%;
}

.absolit-person-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    display: block;
	position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .absolit-tldr-content {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .absolit-tldr-person {
        padding: 1.5rem;
        min-height: 400px;
    }

    .absolit-tldr-wrapper {
        flex-direction: column-reverse;
    }

    .absolit-button-podcast, .absolit-link-linkedin {
        font-size: 1.75rem; 
     
    }

    .absolit-link-linkedin {
        display: block;
        font-size: 1.25rem; 
        margin-top: 5px;
        padding-left: 5px;
    }
}

@media (max-width: 550px) {
    .absolit-tldr-content {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .absolit-tldr-person {
        padding: 1.5rem;
        min-height: 250px;
    }
}