/* Frontend styles for Logo Text Tile Block */
.logo-text-tile {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.logo-text-tile .tile-icon {
    flex: 0 0 auto;
    margin-right: 1.5rem;
}

.logo-text-tile .tile-icon img {
    max-width: 120px;
    height: auto;
    display: block;
}

.logo-text-tile .tile-content {
    flex: 1 1 auto;
}

.logo-text-tile .tile-content-text {
    color: #999;
    line-height: 1.6;
}

.logo-text-tile .tile-content-text a {
    color: #5755d9;
    text-decoration: none;
}

.logo-text-tile .tile-content-text a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-text-tile {
        flex-direction: column;
        text-align: center;
    }

    .logo-text-tile .tile-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}