.alb-share-box {
    margin: 30px 0;
    padding: 20px;
    background: #f0f4f8;
    border-left: 5px solid #0073aa;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.alb-share-box span {
    font-weight: 600;
    color: #333;
}

.alb-copy-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    border: none;
    transition: background 0.3s ease;
}

.alb-copy-link-btn:hover {
    background: #005177;
    color: #fff;
}

.alb-share-icons {
    display: flex;
    gap: 15px;
}

.alb-share-btn {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s;
}

.alb-share-btn:hover {
    background: #f9f9f9;
    border-color: #999;
    color: #000;
}

/* Embed Section */
.alb-embed-section {
    width: 100%;
    margin-top: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 15px;
}

.alb-embed-row {
    margin-bottom: 10px;
}

.alb-embed-row label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.alb-input-group {
    display: flex;
    gap: 0;
}

.alb-embed-code {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 12px;
    font-family: monospace;
    background: #fff;
    resize: none;
    height: 40px;
}

.alb-copy-input-btn {
    padding: 0 15px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background 0.2s;
}

.alb-copy-input-btn:hover {
    background: #e0e0e0;
}

/* --- Benzer Konular (Related Posts) --- */
.alb-related-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    font-family: inherit;
}

.alb-related-footer h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid Layout - Forced 3 Columns */
.alb-related-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .alb-related-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    }
}

.alb-related-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.alb-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.alb-related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.alb-thumb-wrapper {
    width: 100%;
    height: 110px;
    /* Compact Height */
    overflow: hidden;
    background: #f9f9f9;
    position: relative;
}

.alb-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.alb-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eee 0%, #ddd 100%);
}

.alb-related-item:hover .alb-thumb-wrapper img {
    transform: scale(1.1);
}

.alb-related-title {
    display: block;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

.alb-related-item:hover .alb-related-title {
    color: #0073aa;
}

.alb-footer-meta {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}